diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2016-01-29 19:38:18 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2016-01-29 19:38:18 +0000 |
commit | cdae941e0330d7d1f16940aafeebddd1cf6fcc80 (patch) | |
tree | 3ecb1b92baa22c1110150eab26918c94d4257bba /clang/lib/AST/DeclarationName.cpp | |
parent | 4553723825ee688cf7046f1dad3d2b88d40dc197 (diff) | |
download | bcm5719-llvm-cdae941e0330d7d1f16940aafeebddd1cf6fcc80.tar.gz bcm5719-llvm-cdae941e0330d7d1f16940aafeebddd1cf6fcc80.zip |
Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r259192 post commit comment.
llvm-svn: 259232
Diffstat (limited to 'clang/lib/AST/DeclarationName.cpp')
-rw-r--r-- | clang/lib/AST/DeclarationName.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclarationName.cpp b/clang/lib/AST/DeclarationName.cpp index b2f27275f49..8322b607a6c 100644 --- a/clang/lib/AST/DeclarationName.cpp +++ b/clang/lib/AST/DeclarationName.cpp @@ -333,7 +333,7 @@ DeclarationName DeclarationName::getUsingDirectiveName() { return DeclarationName(Ptr); } -void DeclarationName::dump() const { +LLVM_DUMP_METHOD void DeclarationName::dump() const { llvm::errs() << *this << '\n'; } |