diff options
-rw-r--r-- | clang/include/clang/Lex/MacroInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/include/clang/Lex/MacroInfo.h b/clang/include/clang/Lex/MacroInfo.h index d25431b55fd..47f10d6e762 100644 --- a/clang/include/clang/Lex/MacroInfo.h +++ b/clang/include/clang/Lex/MacroInfo.h @@ -510,6 +510,9 @@ public: ID.AddPointer(II); } + /// Get the name of the macro. + IdentifierInfo *getName() const { return II; } + /// Get the ID of the module that exports this macro. Module *getOwningModule() const { return OwningModule; } |