Comma at end of enum.
This commit is contained in:
parent
0bbd5bb33b
commit
01a6912bb6
|
@ -24,6 +24,9 @@
|
|||
History
|
||||
|
||||
$Log: not supported by cvs2svn $
|
||||
Revision 1.10 2004/08/25 15:15:22 ganovelli
|
||||
minor changes to comply gcc compiler (typename's and stuff)
|
||||
|
||||
Revision 1.9 2004/07/18 10:13:34 cignoni
|
||||
NewUserBit -> NewBitFlag
|
||||
|
||||
|
@ -69,7 +72,7 @@ struct SamplingFlags{
|
|||
SIMILAR_SAMPLING = 0x0040,
|
||||
NO_SAMPLING = 0x0070,
|
||||
SAVE_ERROR = 0x0100,
|
||||
INCLUDE_UNREFERENCED_VERTICES = 0x0200,
|
||||
INCLUDE_UNREFERENCED_VERTICES = 0x0200
|
||||
};
|
||||
};
|
||||
// -----------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
History
|
||||
|
||||
$Log: not supported by cvs2svn $
|
||||
Revision 1.6 2004/08/25 15:15:27 ganovelli
|
||||
minor changes to comply gcc compiler (typename's and stuff)
|
||||
|
||||
Revision 1.5 2004/06/23 15:36:44 cignoni
|
||||
Restructured management of error, now the standard open for any mesh type return the error code, the default success value is zero
|
||||
Any import class has a method ErrorMsg that give a verbal description of an error code.
|
||||
|
@ -79,7 +82,7 @@ enum STLError {
|
|||
E_NOERROR, // 0
|
||||
// Errori di open
|
||||
E_CANTOPEN, // 1
|
||||
E_UNESPECTEDEOF, // 2
|
||||
E_UNESPECTEDEOF // 2
|
||||
};
|
||||
|
||||
static const char *ErrorMsg(int error)
|
||||
|
|
Loading…
Reference in New Issue