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>2015-12-22 07:57:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-22 08:41:01 +0300
commita9c881f6a3c15a636f398e9340d8daab290513f7 (patch)
treebf177be1ab98d9d1108b24bc366564034917d60a /source/blender/bmesh/bmesh_class.h
parentee2b583a059777162ce68eaa705481c210805513 (diff)
BMesh: store stackdepth as an index
Avoids -1 all over.
Diffstat (limited to 'source/blender/bmesh/bmesh_class.h')
-rw-r--r--source/blender/bmesh/bmesh_class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/bmesh_class.h b/source/blender/bmesh/bmesh_class.h
index 4ffa0bda71a..e3caeedd2c9 100644
--- a/source/blender/bmesh/bmesh_class.h
+++ b/source/blender/bmesh/bmesh_class.h
@@ -217,7 +217,7 @@ typedef struct BMesh {
/* operator api stuff (must be all NULL or all alloc'd) */
struct BLI_mempool *vtoolflagpool, *etoolflagpool, *ftoolflagpool;
- int stackdepth;
+ int toolflag_index;
struct BMOperator *currentop;
CustomData vdata, edata, ldata, pdata;