[cfe-commits] r163792 - /cfe/trunk/include/clang/Tooling/Refactoring.h

Manuel Klimek klimek at google.com
Thu Sep 13 05:44:47 PDT 2012


Author: klimek
Date: Thu Sep 13 07:44:47 2012
New Revision: 163792

URL: http://llvm.org/viewvc/llvm-project?rev=163792&view=rev
Log:
Add missing accessor.

Modified:
    cfe/trunk/include/clang/Tooling/Refactoring.h

Modified: cfe/trunk/include/clang/Tooling/Refactoring.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Tooling/Refactoring.h?rev=163792&r1=163791&r2=163792&view=diff
==============================================================================
--- cfe/trunk/include/clang/Tooling/Refactoring.h (original)
+++ cfe/trunk/include/clang/Tooling/Refactoring.h Thu Sep 13 07:44:47 2012
@@ -74,6 +74,7 @@
   StringRef getFilePath() const { return FilePath; }
   unsigned getOffset() const { return Offset; }
   unsigned getLength() const { return Length; }
+  StringRef getReplacementText() const { return ReplacementText; }
   /// @}
 
   /// \brief Applies the replacement on the Rewriter.





More information about the cfe-commits mailing list