]> granicus.if.org Git - clang/commitdiff
Revert "Use sep instead of ' '."
authorTed Kremenek <kremenek@apple.com>
Wed, 26 Sep 2012 18:06:08 +0000 (18:06 +0000)
committerTed Kremenek <kremenek@apple.com>
Wed, 26 Sep 2012 18:06:08 +0000 (18:06 +0000)
This isn't correct, as Jordan correctly points out.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164711 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Core/RangeConstraintManager.cpp

index d5b9c65256bcf5cd7e1008791e62343d96a51d81..5da4fa47daebfa9152018ef2a8d1ae0c545eb004 100644 (file)
@@ -566,7 +566,7 @@ void RangeConstraintManager::print(ProgramStateRef St, raw_ostream &Out,
 
   Out << nl << sep << "Ranges of symbol values:";
   for (ConstraintRangeTy::iterator I=Ranges.begin(), E=Ranges.end(); I!=E; ++I){
-    Out << nl << sep << I.getKey() << " : ";
+    Out << nl << ' ' << I.getKey() << " : ";
     I.getData().print(Out);
   }
   Out << nl;