diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-09 02:55:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-09 02:55:12 +0000 |
commit | 7ff66fb91e0a79ba6549c56e2fbf522c983eb917 (patch) | |
tree | f649bd7e0d22d1109d5ffc897c91f1fc3e226d27 /clang/Lex/Preprocessor.cpp | |
parent | d5917cef952a4553e8ca4b757406bef4aa313c23 (diff) | |
download | bcm5719-llvm-7ff66fb91e0a79ba6549c56e2fbf522c983eb917.tar.gz bcm5719-llvm-7ff66fb91e0a79ba6549c56e2fbf522c983eb917.zip |
split the MacroArgs class out of TokenLexer.cpp/h into
MacroArgs.cpp/h
llvm-svn: 48075
Diffstat (limited to 'clang/Lex/Preprocessor.cpp')
-rw-r--r-- | clang/Lex/Preprocessor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/Lex/Preprocessor.cpp b/clang/Lex/Preprocessor.cpp index 1cc4e6ecea4..d8865441b0a 100644 --- a/clang/Lex/Preprocessor.cpp +++ b/clang/Lex/Preprocessor.cpp @@ -26,6 +26,7 @@ //===----------------------------------------------------------------------===// #include "clang/Lex/Preprocessor.h" +#include "MacroArgs.h" #include "clang/Lex/HeaderSearch.h" #include "clang/Lex/MacroInfo.h" #include "clang/Lex/PPCallbacks.h" |