diff options
Diffstat (limited to 'include/clang/AST/NestedNameSpecifier.h')
-rw-r--r-- | include/clang/AST/NestedNameSpecifier.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/NestedNameSpecifier.h b/include/clang/AST/NestedNameSpecifier.h index 0eb6826919..864459b8ce 100644 --- a/include/clang/AST/NestedNameSpecifier.h +++ b/include/clang/AST/NestedNameSpecifier.h @@ -159,7 +159,7 @@ public: /// \brief Print this nested name specifier to the given output /// stream. - void Print(llvm::raw_ostream &OS) const; + void print(llvm::raw_ostream &OS) const; void Profile(llvm::FoldingSetNodeID &ID) const { ID.AddPointer(Prefix); @@ -171,7 +171,7 @@ public: /// \brief Dump the nested name specifier to standard output to aid /// in debugging. - void Dump(); + void dump(); }; } |