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-01-28 14:08:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-28 14:12:49 +0300
commitf8ce24f79624b5bae8e6894d3ed4e619cef1cbb7 (patch)
tree7adcb17276d427daa0f6283a6483e7eb6ef91215 /source/blender/blenlib
parentd918217d35b687f174711d9ae35b8270909f1e28 (diff)
Cleanup: sort forward declarations of enum & struct
Done using: source/tools/utils_maintenance/c_sort_blocks.py
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_array_store.h2
-rw-r--r--source/blender/blenlib/BLI_callbacks.h2
-rw-r--r--source/blender/blenlib/BLI_graph.h2
-rw-r--r--source/blender/blenlib/BLI_linklist.h2
-rw-r--r--source/blender/blenlib/BLI_uvproject.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/BLI_array_store.h b/source/blender/blenlib/BLI_array_store.h
index f4cbc07bf26..c0c16b83466 100644
--- a/source/blender/blenlib/BLI_array_store.h
+++ b/source/blender/blenlib/BLI_array_store.h
@@ -26,8 +26,8 @@
* \brief Efficient in-memory storage of multiple similar arrays.
*/
-typedef struct BArrayStore BArrayStore;
typedef struct BArrayState BArrayState;
+typedef struct BArrayStore BArrayStore;
BArrayStore *BLI_array_store_create(
unsigned int stride, unsigned int chunk_count);
diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h
index 3db7d2d87f1..8b07dfe6599 100644
--- a/source/blender/blenlib/BLI_callbacks.h
+++ b/source/blender/blenlib/BLI_callbacks.h
@@ -25,8 +25,8 @@
#ifndef __BLI_CALLBACKS_H__
#define __BLI_CALLBACKS_H__
-struct Main;
struct ID;
+struct Main;
/**
* Common suffix uses:
diff --git a/source/blender/blenlib/BLI_graph.h b/source/blender/blenlib/BLI_graph.h
index 0b316d3c5bb..2e65b67eaa3 100644
--- a/source/blender/blenlib/BLI_graph.h
+++ b/source/blender/blenlib/BLI_graph.h
@@ -31,9 +31,9 @@
#include "DNA_listBase.h"
+struct BArc;
struct BGraph;
struct BNode;
-struct BArc;
struct RadialArc;
diff --git a/source/blender/blenlib/BLI_linklist.h b/source/blender/blenlib/BLI_linklist.h
index 214915163c7..bd1ce15beeb 100644
--- a/source/blender/blenlib/BLI_linklist.h
+++ b/source/blender/blenlib/BLI_linklist.h
@@ -34,8 +34,8 @@
#include "BLI_compiler_attrs.h"
-struct MemArena;
struct BLI_mempool;
+struct MemArena;
typedef void (*LinkNodeFreeFP)(void *link);
typedef void (*LinkNodeApplyFP)(void *link, void *userdata);
diff --git a/source/blender/blenlib/BLI_uvproject.h b/source/blender/blenlib/BLI_uvproject.h
index 516a9b8b237..2a61acc8b36 100644
--- a/source/blender/blenlib/BLI_uvproject.h
+++ b/source/blender/blenlib/BLI_uvproject.h
@@ -24,8 +24,8 @@
* \ingroup bli
*/
-struct ProjCameraInfo;
struct Object;
+struct ProjCameraInfo;
/* create uv info from the camera, needs to be freed */
struct ProjCameraInfo *BLI_uvproject_camera_info(struct Object *ob, float rotmat[4][4], float winx, float winy);