diff options
Diffstat (limited to 'include/clang/AST/DeclarationName.h')
-rw-r--r-- | include/clang/AST/DeclarationName.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/AST/DeclarationName.h b/include/clang/AST/DeclarationName.h index ed4ac6b..a30f6e8 100644 --- a/include/clang/AST/DeclarationName.h +++ b/include/clang/AST/DeclarationName.h @@ -176,7 +176,6 @@ public: /// getNameKind - Determine what kind of name this is. NameKind getNameKind() const; - /// getName - Retrieve the human-readable string for this name. std::string getAsString() const; @@ -249,6 +248,8 @@ public: static DeclarationName getTombstoneMarker() { return DeclarationName(uintptr_t(-2)); } + + void dump() const; }; /// Ordering on two declaration names. If both names are identifiers, |