diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-05-03 22:31:32 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-05-03 22:31:32 +0000 |
commit | 37e48ff547a9b27231e37757c07c11d068fe7e21 (patch) | |
tree | 6140cd279a7c27b60a84729e326753989dcd43fb /clang/lib/Lex/TokenLexer.cpp | |
parent | 5d2ce840c1bdfc88da6473314fe9ab521948f195 (diff) | |
download | bcm5719-llvm-37e48ff547a9b27231e37757c07c11d068fe7e21.tar.gz bcm5719-llvm-37e48ff547a9b27231e37757c07c11d068fe7e21.zip |
[Preprocessor] For the MacroExpands preprocessor callback, also pass the MacroArgs object that provides information about
the argument tokens for a function macro.
llvm-svn: 181065
Diffstat (limited to 'clang/lib/Lex/TokenLexer.cpp')
-rw-r--r-- | clang/lib/Lex/TokenLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/TokenLexer.cpp b/clang/lib/Lex/TokenLexer.cpp index 5b41fe9b8d3..07753c7d7c3 100644 --- a/clang/lib/Lex/TokenLexer.cpp +++ b/clang/lib/Lex/TokenLexer.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// #include "clang/Lex/TokenLexer.h" -#include "MacroArgs.h" +#include "clang/Lex/MacroArgs.h" #include "clang/Basic/SourceManager.h" #include "clang/Lex/LexDiagnostic.h" #include "clang/Lex/MacroInfo.h" |