Code cleanup, remove redefinition of UNUSED macro.

Patch from Jason Wilkins:
http://projects.blender.org/tracker/index.php?func=detail&aid=30350&group_id=9&atid=127
This commit is contained in:
Nicholas Bishop 2012-02-27 02:46:25 +00:00
parent c62a462997
commit 8fcb66588b

@ -20,13 +20,6 @@
# define CCG_INLINE inline
#endif
/* copied from BKE_utildefines.h ugh */
#ifdef __GNUC__
# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else
# define UNUSED(x) x
#endif
/* used for normalize_v3 in BLI_math_vector
* float.h's FLT_EPSILON causes trouble with subsurf normals - campbell */
#define EPSILON (1.0e-35f)