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:
authorHoward Trickey <howard.trickey@gmail.com>2012-08-06 17:31:28 +0400
committerHoward Trickey <howard.trickey@gmail.com>2012-08-06 17:31:28 +0400
commit244714d53e0be358511955643df063e191179abb (patch)
treec51470a37a38c403c986a71c9c34a7e614f4f163 /source/blender/blenlib/intern/stack.c
parent7beb47bd6975a36356ce6693f5eab27cb82640c1 (diff)
Remove redundant typedef of BLI_Stack
(caused compilation errors with some compilers)
Diffstat (limited to 'source/blender/blenlib/intern/stack.c')
-rw-r--r--source/blender/blenlib/intern/stack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/stack.c b/source/blender/blenlib/intern/stack.c
index 1d5bdbfdab6..5be2ed941a7 100644
--- a/source/blender/blenlib/intern/stack.c
+++ b/source/blender/blenlib/intern/stack.c
@@ -33,14 +33,14 @@
#include "BLI_utildefines.h"
#include "MEM_guardedalloc.h"
-typedef struct BLI_Stack {
+struct BLI_Stack {
void *data;
int totelem;
int maxelem;
int elem_size;
-} BLI_Stack;
+};
BLI_Stack *BLI_stack_new(int elem_size, const char *description)
{