From f896568baff2904ef2a26ee082321f4f689a86b2 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Tue, 3 Jun 2014 17:07:27 +0200 Subject: [PATCH] property: add the necessary include file for std::function MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes the following error: /home/aurel/devel/sigrok/pulseview/pv/prop/property.h:39:15: error: ‘function’ in namespace ‘std’ does not name a template type typedef std::function Getter; --- pv/prop/property.h | 1 + 1 file changed, 1 insertion(+) diff --git a/pv/prop/property.h b/pv/prop/property.h index e5a523f9..b3aa1a69 100644 --- a/pv/prop/property.h +++ b/pv/prop/property.h @@ -23,6 +23,7 @@ #include +#include #include #include -- 2.30.2