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>2021-08-26 05:39:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-26 05:39:45 +0300
commitcec35060f563e89a567ce252a6a3ebc7fcf3318f (patch)
treed36d27fc37e906b774339c1e0231c65392952e85 /source/blender/io
parent4e16e8b6711538256823db936a00787e1e9e8679 (diff)
Cleanup: sort struct blocks
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/gpencil/CMakeLists.txt3
-rw-r--r--source/blender/io/usd/usd.h6
2 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/io/gpencil/CMakeLists.txt b/source/blender/io/gpencil/CMakeLists.txt
index 4af8b506bd5..3ef9fa44ff8 100644
--- a/source/blender/io/gpencil/CMakeLists.txt
+++ b/source/blender/io/gpencil/CMakeLists.txt
@@ -50,6 +50,9 @@ set(SRC
intern/gpencil_io_export_base.hh
intern/gpencil_io_import_base.hh
intern/gpencil_io_import_svg.hh
+
+ # Only so this file is known by CMake.
+ ../../../../extern/nanosvg/nanosvg.h
)
set(LIB
diff --git a/source/blender/io/usd/usd.h b/source/blender/io/usd/usd.h
index 6b6b2d37162..2a036c3d398 100644
--- a/source/blender/io/usd/usd.h
+++ b/source/blender/io/usd/usd.h
@@ -25,11 +25,11 @@
extern "C" {
#endif
-struct bContext;
-struct Object;
struct CacheArchiveHandle;
-struct CacheReader;
struct CacheFile;
+struct CacheReader;
+struct Object;
+struct bContext;
struct USDExportParams {
bool export_animation;