[cfe-commits] r59851 - /cfe/trunk/include/clang/Basic/Diagnostic.h

Chris Lattner sabre at nondot.org
Fri Nov 21 17:04:49 PST 2008


Author: lattner
Date: Fri Nov 21 19:04:49 2008
New Revision: 59851

URL: http://llvm.org/viewvc/llvm-project?rev=59851&view=rev
Log:
fit in 80 cols

Modified:
    cfe/trunk/include/clang/Basic/Diagnostic.h

Modified: cfe/trunk/include/clang/Basic/Diagnostic.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/Diagnostic.h?rev=59851&r1=59850&r2=59851&view=diff

==============================================================================
--- cfe/trunk/include/clang/Basic/Diagnostic.h (original)
+++ cfe/trunk/include/clang/Basic/Diagnostic.h Fri Nov 21 19:04:49 2008
@@ -417,8 +417,7 @@
   const IdentifierInfo *getArgIdentifier(unsigned Idx) const {
     assert(getArgKind(Idx) == Diagnostic::ak_identifierinfo &&
            "invalid argument accessor!");
-    return reinterpret_cast<const IdentifierInfo*>(
-                                                   DiagObj->DiagArgumentsVal[Idx]);
+    return reinterpret_cast<IdentifierInfo*>(DiagObj->DiagArgumentsVal[Idx]);
   }
   
   /// getNumRanges - Return the number of source ranges associated with this





More information about the cfe-commits mailing list