diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 12:05:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-26 12:05:34 +0100 |
commit | f467269e1a5b0cbd9519f8cdc5d99fccc1db613f (patch) | |
tree | 30242dee364c85a1a48453862ce0137dff94943b /compilerplugins | |
parent | f23c0dbe00bcdc13ff65fbe8a312416d0bc92599 (diff) |
That #if for Clang < 3.2 is probably good to go by now
Change-Id: I019405884dec5767de733e3fa0114b3b461e777d
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/plugin.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compilerplugins/clang/plugin.hxx b/compilerplugins/clang/plugin.hxx index 867396cdcb43..778d951d74ca 100644 --- a/compilerplugins/clang/plugin.hxx +++ b/compilerplugins/clang/plugin.hxx @@ -22,11 +22,7 @@ #include <clang/Lex/Preprocessor.h> #include <unordered_map> -#if __clang_major__ < 3 || __clang_major__ == 3 && __clang_minor__ < 2 -#include <clang/Rewrite/Rewriter.h> -#else #include <clang/Rewrite/Core/Rewriter.h> -#endif using namespace clang; using namespace llvm; |