diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-24 04:33:15 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-10-24 04:33:15 +0000 |
commit | 5b8b6f2d2064746989ae480d9b73dfc96676cd2b (patch) | |
tree | 956744ae01aa981dbcb787327aeebbb131bae6d7 /lib/Analysis/GRExprEngine.cpp | |
parent | b406459d5b459b95f373825d388430465ad962f9 (diff) |
Fix 80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index 1840482a3f..996fea9f63 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/lib/Analysis/GRExprEngine.cpp @@ -2322,7 +2322,7 @@ struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> : if (SLoc.isFileID()) { Out << "\\lline=" << GraphPrintSourceManager->getLineNumber(SLoc) << " col=" - << GraphPrintSourceManager->getColumnNumber(SLoc) << "\\l"; + << GraphPrintSourceManager->getColumnNumber(SLoc) << "\\l"; } if (GraphPrintCheckerState->isImplicitNullDeref(N)) |