[MOAB-dev] r3248 - MOAB/trunk
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Wed Oct 28 16:26:02 CDT 2009
Author: kraftche
Date: 2009-10-28 16:26:01 -0500 (Wed, 28 Oct 2009)
New Revision: 3248
Modified:
MOAB/trunk/MBEntityType.h
Log:
fix C++ syntax in C file
Modified: MOAB/trunk/MBEntityType.h
===================================================================
--- MOAB/trunk/MBEntityType.h 2009-10-27 15:43:48 UTC (rev 3247)
+++ MOAB/trunk/MBEntityType.h 2009-10-28 21:26:01 UTC (rev 3248)
@@ -25,7 +25,7 @@
* grouped together and all elements of similar dimension are
* grouped together.
*/
-enum MBEntityType
+typedef enum
{
MBVERTEX = 0, /**< Mesh Vertex AKA node */
MBEDGE, /**< Mesh Edge */
@@ -41,7 +41,7 @@
MBENTITYSET, /**< MeshSet */
MBMAXTYPE /**< Just a place keeper - must be the # of entities, for array */
/**< dimensioning purposes */
-};
+} MBEntityType;
#ifdef __cplusplus
} /* extern "C" */
More information about the moab-dev
mailing list