diff options
Diffstat (limited to 'clang/lib/Analysis/GRExprEngineInternalChecks.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngineInternalChecks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp b/clang/lib/Analysis/GRExprEngineInternalChecks.cpp index cca1c68cf7f..8f37ad2d658 100644 --- a/clang/lib/Analysis/GRExprEngineInternalChecks.cpp +++ b/clang/lib/Analysis/GRExprEngineInternalChecks.cpp @@ -453,8 +453,8 @@ public: std::string shortBuf; llvm::raw_string_ostream os_short(shortBuf); os_short << "Variable-length array '" << VD->getNameAsString() << "' " - << (isUndefined ? " garbage value for array size" - : " has zero elements (undefined behavior)"); + << (isUndefined ? "garbage value for array size" + : "has zero elements (undefined behavior)"); RangedBugReport *report = new RangedBugReport(*this, os_short.str().c_str(), |