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>2019-05-23 09:32:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-23 09:32:58 +0300
commita521ad756848114b4e1be90f46b7c6799fb562f7 (patch)
treebd6b1d68bc30cae741d92e47d23a644a839b2897 /source/blender/blenlib/BLI_buffer.h
parentf417a717b1d9c576276bee12c4646a97005a35bf (diff)
Cleanup: allow BLI_Buffer to be used without it's header
Without this any functions declared that take BLI_Buffer also needed to include the header.
Diffstat (limited to 'source/blender/blenlib/BLI_buffer.h')
-rw-r--r--source/blender/blenlib/BLI_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_buffer.h b/source/blender/blenlib/BLI_buffer.h
index 9f3644ed45a..6fe1e9bb693 100644
--- a/source/blender/blenlib/BLI_buffer.h
+++ b/source/blender/blenlib/BLI_buffer.h
@@ -21,7 +21,7 @@
* \ingroup bli
*/
-typedef struct {
+typedef struct BLI_Buffer {
void *data;
const size_t elem_size;
size_t count, alloc_count;