diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 23:42:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-01 23:42:09 +0100 |
commit | 51b502bb53347e8117dce101ec7c2c1052ac9620 (patch) | |
tree | 7006cc1c8da5e877b78365386bf74e21056f7c1f /compilerplugins | |
parent | 002c1f7223a0363f848d37062a0043d63255ad94 (diff) |
Missing include
Change-Id: I6af48e37b1b796a1680447ff972de8b5f5623d26
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/checkconfigmacros.cxx | 2 | ||||
-rw-r--r-- | compilerplugins/clang/mergeclasses.cxx | 1 | ||||
-rw-r--r-- | compilerplugins/clang/stringstatic.cxx | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/compilerplugins/clang/checkconfigmacros.cxx b/compilerplugins/clang/checkconfigmacros.cxx index 3d6dc98ac7f7..855755999a70 100644 --- a/compilerplugins/clang/checkconfigmacros.cxx +++ b/compilerplugins/clang/checkconfigmacros.cxx @@ -9,6 +9,8 @@ * */ +#include <set> + #include "compat.hxx" #include "plugin.hxx" diff --git a/compilerplugins/clang/mergeclasses.cxx b/compilerplugins/clang/mergeclasses.cxx index fa4eb3c99a3b..a3ba0cc95d21 100644 --- a/compilerplugins/clang/mergeclasses.cxx +++ b/compilerplugins/clang/mergeclasses.cxx @@ -8,6 +8,7 @@ */ #include <cassert> +#include <set> #include <string> #include <iostream> #include "plugin.hxx" diff --git a/compilerplugins/clang/stringstatic.cxx b/compilerplugins/clang/stringstatic.cxx index 823fc7bab4b3..9bcb37263dff 100644 --- a/compilerplugins/clang/stringstatic.cxx +++ b/compilerplugins/clang/stringstatic.cxx @@ -7,6 +7,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#include <set> + #include "check.hxx" #include "plugin.hxx" |