diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-09-26 17:23:31 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-09-26 17:23:31 +0000 |
commit | fb9a0ede96023d18af24ee98854db9606fdafb5c (patch) | |
tree | f2764d0f2e20347cf8416e7b014ba7733ed4656f /lib/StaticAnalyzer/Core/RangeConstraintManager.cpp | |
parent | 1aca4565aba1b5dc5dfbbfe4446f630b846fe01f (diff) |
Use sep instead of ' '.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164709 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 5da4fa47da..d5b9c65256 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 << ' ' << I.getKey() << " : "; + Out << nl << sep << I.getKey() << " : "; I.getData().print(Out); } Out << nl; |