[cfe-commits] r60693 - /cfe/trunk/lib/Sema/SemaDecl.cpp

Zhongxing Xu xuzhongxing at gmail.com
Sun Dec 7 23:14:51 PST 2008


Author: zhongxingxu
Date: Mon Dec  8 01:14:51 2008
New Revision: 60693

URL: http://llvm.org/viewvc/llvm-project?rev=60693&view=rev
Log:
fix 80-col violation.

Modified:
    cfe/trunk/lib/Sema/SemaDecl.cpp

Modified: cfe/trunk/lib/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=60693&r1=60692&r2=60693&view=diff

==============================================================================
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Mon Dec  8 01:14:51 2008
@@ -76,7 +76,7 @@
 
 void Sema::PushDeclContext(DeclContext *DC) {
   assert(getContainingDC(DC) == CurContext &&
-       "The next DeclContext should be lexically contained in the current one.");
+      "The next DeclContext should be lexically contained in the current one.");
   CurContext = DC;
 }
 





More information about the cfe-commits mailing list