diff options
author | Andre Heinecke <[email protected]> | 2017-05-10 08:24:18 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2017-05-10 08:24:18 +0000 |
commit | 5e27bf98b4c48cf6a239bcc94b7b67515ff339e7 (patch) | |
tree | bcd31078f1c922ed0b06cc92394a7cfc69e088f9 | |
parent | qt: Undeprecate API that I find useful (diff) | |
download | gpgme-5e27bf98b4c48cf6a239bcc94b7b67515ff339e7.tar.gz gpgme-5e27bf98b4c48cf6a239bcc94b7b67515ff339e7.zip |
qt: Add a missing include <functional>
* lang/qt/src/qgpgmenewcryptoconfig.cpp: Include functional.
--
This is intended to fix compilation against the c++ stdlib from
Gentoo / GCC 7.
Patch provided by Martin Väth.
GnuPG-Bug-Id: T3151
-rw-r--r-- | lang/qt/src/qgpgmenewcryptoconfig.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/qt/src/qgpgmenewcryptoconfig.cpp b/lang/qt/src/qgpgmenewcryptoconfig.cpp index d413126f..ba028a97 100644 --- a/lang/qt/src/qgpgmenewcryptoconfig.cpp +++ b/lang/qt/src/qgpgmenewcryptoconfig.cpp @@ -49,6 +49,7 @@ #include <sstream> #include <string> +#include <functional> #include <cassert> #include <functional> |