diff options
Diffstat (limited to 'clang/include')
-rw-r--r-- | clang/include/clang/AST/NestedNameSpecifier.h | 4 | ||||
-rw-r--r-- | clang/include/clang/AST/TemplateName.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/AST/NestedNameSpecifier.h b/clang/include/clang/AST/NestedNameSpecifier.h index 0eb68269197..864459b8ced 100644 --- a/clang/include/clang/AST/NestedNameSpecifier.h +++ b/clang/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(); }; } diff --git a/clang/include/clang/AST/TemplateName.h b/clang/include/clang/AST/TemplateName.h index 09e81be091d..86c443985de 100644 --- a/clang/include/clang/AST/TemplateName.h +++ b/clang/include/clang/AST/TemplateName.h @@ -97,11 +97,11 @@ public: bool isDependent() const; /// \brief Print the template name. - void Print(llvm::raw_ostream &OS) const; + void print(llvm::raw_ostream &OS) const; /// \brief Debugging aid that dumps the template name to standard /// error. - void Dump() const; + void dump() const; void Profile(llvm::FoldingSetNodeID &ID) { ID.AddPointer(Storage.getOpaqueValue()); |