Add missing spaces in path diagnostics.

llvm-svn: 56166
This commit is contained in:
Ted Kremenek 2008-09-12 18:17:46 +00:00
parent 3c12fc4342
commit ef2b3a71bb
1 changed files with 3 additions and 3 deletions

View File

@ -550,7 +550,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
}
}
else {
os << "'Default' branch taken.";
os << "'Default' branch taken. ";
ExecutionContinues(os, SMgr, LastNode);
}
@ -587,7 +587,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
std::ostringstream os;
os << "Loop condition is true.";
os << "Loop condition is true. ";
ExecutionContinues(os, SMgr, Dst);
PD.push_front(new PathDiagnosticPiece(L, os.str()));
@ -606,7 +606,7 @@ void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
std::ostringstream os;
os << "Loop condition is false.";
os << "Loop condition is false. ";
ExecutionContinues(os, SMgr, Dst);
PD.push_front(new PathDiagnosticPiece(L, os.str()));