Skip to content

Commit

Permalink
Fix build with clang 4.0, libstdc++ 6.3
Browse files Browse the repository at this point in the history
Current clang headers no longer #include <set> -- got to #include it
ourselves to make use of std::set

Signed-off-by: Bernhard Rosenkränzer <bero@lindev.ch>
  • Loading branch information
berolinux committed Feb 7, 2017
1 parent e32faff commit d6973e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/mocppcallbacks.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include <clang/Lex/Preprocessor.h>
#include <clang/Basic/Version.h>
#include <set>

class MocPPCallbacks : public clang::PPCallbacks {
clang::Preprocessor &PP;
Expand Down

0 comments on commit d6973e3

Please sign in to comment.