Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-02-27 06:46:25 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-02-27 06:46:25 +0400
commit8fcb66588b7463e369a3cf97b9a2b14381e99ff7 (patch)
tree13723356f96cfd5eebce2aa570d317fa72043c69 /source/blender/blenkernel/intern/CCGSubSurf.c
parentc62a4629979c1ce95f5d001870583d5463062cf4 (diff)
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
Diffstat (limited to 'source/blender/blenkernel/intern/CCGSubSurf.c')
-rw-r--r--source/blender/blenkernel/intern/CCGSubSurf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/blenkernel/intern/CCGSubSurf.c b/source/blender/blenkernel/intern/CCGSubSurf.c
index 4e531892d32..62da7c2c51b 100644
--- a/source/blender/blenkernel/intern/CCGSubSurf.c
+++ b/source/blender/blenkernel/intern/CCGSubSurf.c
@@ -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)