[M3commit] CVS Update: cm3

Jay Krell jkrell at elego.de
Fri Apr 19 03:53:06 CEST 2013


CVSROOT:	/usr/cvs
Changes by:	jkrell at birch.	13/04/19 03:53:06

Modified files:
	cm3/m3-libs/m3core/src/: m3core.h 

Log message:
	fix gcc 4.8 warning about unused local typedefs, for static assert,
	with __attribute__ ((unused))
	for example, Bing for Werror=unused-local-typedefs
	and get http://code.google.com/p/v8/issues/detail?id=2149
	
	also add some typedefs I had around:
	+typedef float REAL;
	+typedef double LONGREAL;
	+typedef double EXTENDED;
	+#if defined(__cplusplus) || __STDC__
	+typedef void* PVOID;
	+#else
	+typedef char* PVOID;
	+#endif
	+typedef PVOID ADDRESS;
	+typedef ADDRESS TEXT;
	+typedef ADDRESS MUTEX;
	
	not sure they are needed (and would eventually like
	something better for TEXT for debugability)




More information about the M3commit mailing list