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-08-25 01:50:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-25 01:50:53 +0300
commit1080a7d5e132c162c80f3fc461885b483f8ac722 (patch)
tree5e3fc2172af6f870bb31b4a30f8a840467505296 /source/blender/blenlib/BLI_mempool.h
parent7d516f11f7fb5bf8374a9675c25516694fe2eda2 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenlib/BLI_mempool.h')
-rw-r--r--source/blender/blenlib/BLI_mempool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_mempool.h b/source/blender/blenlib/BLI_mempool.h
index 37d1fb4647d..0c754f551e0 100644
--- a/source/blender/blenlib/BLI_mempool.h
+++ b/source/blender/blenlib/BLI_mempool.h
@@ -78,8 +78,8 @@ enum {
BLI_MEMPOOL_NOP = 0,
/** allow iterating on this mempool.
*
- * \note this requires that the first four bytes of the elements never begin with 'free'
- * \note order of iteration is only assured to be the order of allocation when no chunks have been freed.
+ * \note this requires that the first four bytes of the elements never begin with 'free' (FREEWORD).
+ * \note order of iteration is only assured to be the order of allocation when no chunks have been freed.
*/
BLI_MEMPOOL_ALLOW_ITER = (1 << 0),
};