aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-01-27 10:13:28 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-01-27 10:13:28 +0000
commited6530b9a247b7cd42d91728c9afeb660cb52ac0 (patch)
tree132d0c7e2393787ca0b6e10a1bbe28cb774228a5 /lib
parent4c301d06dcd3b0a4b3cb849766b54e63e11b6cd7 (diff)
downloadexternal_llvm-ed6530b9a247b7cd42d91728c9afeb660cb52ac0.zip
external_llvm-ed6530b9a247b7cd42d91728c9afeb660cb52ac0.tar.gz
external_llvm-ed6530b9a247b7cd42d91728c9afeb660cb52ac0.tar.bz2
Make SMDiagnostic::Print a const method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94672 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/SourceMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/SourceMgr.cpp b/lib/Support/SourceMgr.cpp
index 7652e18..83c7964 100644
--- a/lib/Support/SourceMgr.cpp
+++ b/lib/Support/SourceMgr.cpp
@@ -188,7 +188,7 @@ void SourceMgr::PrintMessage(SMLoc Loc, const std::string &Msg,
// SMDiagnostic Implementation
//===----------------------------------------------------------------------===//
-void SMDiagnostic::Print(const char *ProgName, raw_ostream &S) {
+void SMDiagnostic::Print(const char *ProgName, raw_ostream &S) const {
if (ProgName && ProgName[0])
S << ProgName << ": ";