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 <campbell@blender.org>2022-01-11 10:14:53 +0300
committerCampbell Barton <campbell@blender.org>2022-01-11 10:16:00 +0300
commitd608b98145b4b012efd6cf615a64c00d610b772f (patch)
tree9906de5e4f7b04ca0a002ad1f8c405d6236f9232 /source/blender/io
parent9af81c2b74475d8b6d0b6d8b0ca4afbb7ec380fa (diff)
Cleanup: quite missing-variable-declarations warnings
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/wavefront_obj/IO_wavefront_obj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/wavefront_obj/IO_wavefront_obj.h b/source/blender/io/wavefront_obj/IO_wavefront_obj.h
index 25687fd957c..684eb3eda41 100644
--- a/source/blender/io/wavefront_obj/IO_wavefront_obj.h
+++ b/source/blender/io/wavefront_obj/IO_wavefront_obj.h
@@ -46,7 +46,7 @@ typedef enum {
OBJ_AXIS_NEGATIVE_Z_FORWARD = 5,
} eTransformAxisForward;
-const int TOTAL_AXES = 3;
+static const int TOTAL_AXES = 3;
struct OBJExportParams {
/** Full path to the destination .OBJ file. */