diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-18 05:59:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-18 05:59:11 +0000 |
commit | f90a24857851f7d28797205c810aae1708eaa60c (patch) | |
tree | 0aff639702b3de490735d1a727fb47b909977b71 /lib/Lex | |
parent | 6a1bc1b95ee31c6892d46a6993b9e2d2d66831ee (diff) |
move #include to the file that needs it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex')
-rw-r--r-- | lib/Lex/PPMacroExpansion.cpp | 1 | ||||
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/PPMacroExpansion.cpp b/lib/Lex/PPMacroExpansion.cpp index 8218d0ac06..c21f399e63 100644 --- a/lib/Lex/PPMacroExpansion.cpp +++ b/lib/Lex/PPMacroExpansion.cpp @@ -18,6 +18,7 @@ #include "clang/Basic/SourceManager.h" #include "clang/Basic/FileManager.h" #include "clang/Basic/Diagnostic.h" +#include <ctime> using namespace clang; /// setMacroInfo - Specify a macro for this identifier. diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 86156a0772..ebd3072866 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -36,7 +36,6 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Streams.h" -#include <ctime> using namespace clang; //===----------------------------------------------------------------------===// |