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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-26 12:27:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-26 12:27:50 +0400
commit2118d3c19cdff3de2ff39f664f1e86051f989f08 (patch)
tree76d66da544f738803b386be5621dac686ad39051 /source/blender/blenlib/BLI_array.h
parentc30dba9a92b1d5cf0b88902c4c33388b3681fcc8 (diff)
code cleanup: bmesh comments/todos, no functional changes.
Diffstat (limited to 'source/blender/blenlib/BLI_array.h')
-rw-r--r--source/blender/blenlib/BLI_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_array.h b/source/blender/blenlib/BLI_array.h
index d66b8c009d7..dac0143b5b6 100644
--- a/source/blender/blenlib/BLI_array.h
+++ b/source/blender/blenlib/BLI_array.h
@@ -64,7 +64,7 @@
#define BLI_array_staticdeclare(arr, maxstatic) \
int _##arr##_count = 0; \
void *_##arr##_tmp; \
- char _##arr##_static[maxstatic * sizeof(arr)]
+ char _##arr##_static[maxstatic * sizeof(arr)]
/* this returns the entire size of the array, including any buffering. */