diff options
-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" |