diff options
author | Thiago Macieira <thiago.macieira@intel.com> | 2017-06-05 23:02:10 -0700 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@intel.com> | 2017-06-06 14:39:06 +0000 |
commit | c119ecc79e19c630a8b1ef10fe01cc567901033f (patch) | |
tree | b36bef5e15f55e615a44fd5c8f3fa134fcae90b8 /Source/JavaScriptCore | |
parent | 0a3506ebe5d7f431f0dd4dffa24ac32063b90ff1 (diff) | |
download | qtwebkit-c119ecc79e19c630a8b1ef10fe01cc567901033f.tar.gz |
std::function is in <functional>
You have to include it...
Change-Id: Ia3e896da908f42939148fffd14c573086094939e
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'Source/JavaScriptCore')
-rw-r--r-- | Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h b/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h index d86ad3eea..2ebfe384d 100644 --- a/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h +++ b/Source/JavaScriptCore/inspector/InspectorBackendDispatcher.h @@ -32,6 +32,7 @@ #include <wtf/Optional.h> #include <wtf/RefCounted.h> #include <wtf/text/WTFString.h> +#include <functional> namespace Inspector { |