diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-09-26 18:06:08 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-09-26 18:06:08 +0000 |
commit | b35007cc4de8256b39dc1ed9abdeb8b2458c3c01 (patch) | |
tree | 7634da7e81d2403f892d2d61998240a48efa030e /lib/StaticAnalyzer/Core/RangeConstraintManager.cpp | |
parent | d278dbe43aff06865ae3388ba6b4ac5a9d68e179 (diff) |
Revert "Use sep instead of ' '."
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
Diffstat (limited to 'lib/StaticAnalyzer/Core/RangeConstraintManager.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/RangeConstraintManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp b/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp index d5b9c65256..5da4fa47da 100644 --- a/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp +++ b/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp @@ -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; |