[cfe-commits] r163488 - /cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
Ted Kremenek
kremenek at apple.com
Sun Sep 9 23:19:53 PDT 2012
Author: kremenek
Date: Mon Sep 10 01:19:53 2012
New Revision: 163488
URL: http://llvm.org/viewvc/llvm-project?rev=163488&view=rev
Log:
Have PathDiagnosticPiece::getString() return a StringRef instead
of a std::string.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
Modified: cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h?rev=163488&r1=163487&r2=163488&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h Mon Sep 10 01:19:53 2012
@@ -335,7 +335,7 @@
public:
virtual ~PathDiagnosticPiece();
- const std::string& getString() const { return str; }
+ llvm::StringRef getString() const { return str; }
/// getDisplayHint - Return a hint indicating where the diagnostic should
/// be displayed by the PathDiagnosticConsumer.
More information about the cfe-commits
mailing list