]> granicus.if.org Git - clang/commitdiff
Use sep instead of ' '.
authorTed Kremenek <kremenek@apple.com>
Wed, 26 Sep 2012 17:23:31 +0000 (17:23 +0000)
committerTed Kremenek <kremenek@apple.com>
Wed, 26 Sep 2012 17:23:31 +0000 (17:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164709 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Core/RangeConstraintManager.cpp

index 5da4fa47daebfa9152018ef2a8d1ae0c545eb004..d5b9c65256bcf5cd7e1008791e62343d96a51d81 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 << ' ' << I.getKey() << " : ";
+    Out << nl << sep << I.getKey() << " : ";
     I.getData().print(Out);
   }
   Out << nl;