diff options
-rw-r--r-- | include/clang/AST/Decl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index 48ec888a37..55f823f018 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -120,6 +120,9 @@ public: /// manipulation, so it should be called only when performance doesn't matter. /// For simple declarations, getNameAsCString() should suffice. // + // FIXME: This function should be renamed to indicate that it is not just an + // alternate form of getName(), and clients should move as appropriate. + // // FIXME: Deprecated, move clients to getName(). std::string getNameAsString() const { return Name.getAsString(); } |