[llvm-commits] [dragonegg] r157180 - /dragonegg/trunk/include/dragonegg/Trees.h

Duncan Sands baldrick at free.fr
Mon May 21 03:00:20 PDT 2012


Author: baldrick
Date: Mon May 21 05:00:20 2012
New Revision: 157180

URL: http://llvm.org/viewvc/llvm-project?rev=157180&view=rev
Log:
"Pedantic" doesn't like commas at the end of enumerator lists.

Modified:
    dragonegg/trunk/include/dragonegg/Trees.h

Modified: dragonegg/trunk/include/dragonegg/Trees.h
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/include/dragonegg/Trees.h?rev=157180&r1=157179&r2=157180&view=diff
==============================================================================
--- dragonegg/trunk/include/dragonegg/Trees.h (original)
+++ dragonegg/trunk/include/dragonegg/Trees.h Mon May 21 05:00:20 2012
@@ -43,7 +43,7 @@
   FLOAT_TYPE,           // A scalar, complex or vector floating point type.
   INTEGRAL_TYPE,        // A enumeral, boolean or integer type.
   RECORD_OR_UNION_TYPE, // A record, union or qualified union type.
-  TYPE,                 // Any type.
+  TYPE                  // Any type.
 };
 
 /// isa - Return true if the given tree has the specified code.





More information about the llvm-commits mailing list