diff options
-rw-r--r-- | include/clang/Rewrite/Rewriter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Rewrite/Rewriter.h b/include/clang/Rewrite/Rewriter.h index 9a579f1263..59ed5d826b 100644 --- a/include/clang/Rewrite/Rewriter.h +++ b/include/clang/Rewrite/Rewriter.h @@ -138,7 +138,10 @@ public: /// getRewritenText - Return the rewritten form of the text in the specified /// range. If the start or end of the range was unrewritable or if they are - /// in different buffers, this returns an empty string. + /// in different buffers, this returns an empty string. + /// + /// Note that this method is not particularly efficient. + /// std::string getRewritenText(SourceRange Range) const; /// InsertText - Insert the specified string at the specified location in the |