diff options
author | Brad King <brad.king@kitware.com> | 2018-07-31 13:27:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-07-31 13:34:55 (GMT) |
commit | 276d3c7afe45f26232cf1e9664ad34037d28a52a (patch) | |
tree | 0e107b4d5e613379b056f710e3c74c32370b92ed /Source/cmServerProtocol.cxx | |
parent | 72f57845d3ad8cd401ca1c847ae8dd890d40a0b8 (diff) | |
download | CMake-276d3c7afe45f26232cf1e9664ad34037d28a52a.zip CMake-276d3c7afe45f26232cf1e9664ad34037d28a52a.tar.gz CMake-276d3c7afe45f26232cf1e9664ad34037d28a52a.tar.bz2 |
IWYU: Add workaround mapping for std::hash
When using GCC 8's standard library IWYU thinks that `<system_error>`
must be included to get `std::hash`. Add a mapping for `<utility>`.
Diffstat (limited to 'Source/cmServerProtocol.cxx')
-rw-r--r-- | Source/cmServerProtocol.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmServerProtocol.cxx b/Source/cmServerProtocol.cxx index c267160..b05eac4 100644 --- a/Source/cmServerProtocol.cxx +++ b/Source/cmServerProtocol.cxx @@ -37,6 +37,7 @@ #include <set> #include <string> #include <unordered_map> +#include <utility> #include <vector> // Get rid of some windows macros: |