Silence a -Wcast-qual warning; NFC.
authorAaron Ballman <aaron@aaronballman.com>
Tue, 21 Oct 2014 16:12:37 +0000 (16:12 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Tue, 21 Oct 2014 16:12:37 +0000 (16:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220300 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/IR/DebugInfoTest.cpp

index e8bbe61d45f09b47561b6c8fff3049992ec01164..1fa851e39ae98f4b616b553713c5e0460951fc28 100644 (file)
@@ -15,7 +15,7 @@ using namespace llvm;
 namespace llvm {
 
 static void PrintTo(const StringRef &S, ::std::ostream *os) {
-  *os << "(" << (void *)S.data() << "," << S.size() << ") = '";
+  *os << "(" << (const void *)S.data() << "," << S.size() << ") = '";
   for (auto C : S)
     if (C)
       *os << C;