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-10-04 05:12:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-04 05:14:58 +0300
commit3c3669894f9d8b9e079605aee1a84796532fbe5b (patch)
tree9ef96d44e9337ea481bba2f5132a179cf38ace72 /source/blender/blenlib
parent6e48a51af7925e84988cb83f986a7d5d415a2ae2 (diff)
Cleanup: use system includes
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_task.hh2
-rw-r--r--source/blender/blenlib/intern/fileops.c4
-rw-r--r--source/blender/blenlib/intern/math_color_inline.c2
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc4
-rw-r--r--source/blender/blenlib/intern/mesh_intersect.cc2
-rw-r--r--source/blender/blenlib/intern/path_util.c2
6 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/blenlib/BLI_task.hh b/source/blender/blenlib/BLI_task.hh
index e2446ad143e..da7309837c8 100644
--- a/source/blender/blenlib/BLI_task.hh
+++ b/source/blender/blenlib/BLI_task.hh
@@ -28,10 +28,10 @@
# define NOMINMAX
# define TBB_MIN_MAX_CLEANUP
# endif
-# include "tbb/parallel_reduce.h"
# include <tbb/blocked_range.h>
# include <tbb/parallel_for.h>
# include <tbb/parallel_for_each.h>
+# include <tbb/parallel_reduce.h>
# include <tbb/task_arena.h>
# ifdef WIN32
/* We cannot keep this defined, since other parts of the code deal with this on their own, leading
diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c
index 2ef4d1093a8..7019acfbbdc 100644
--- a/source/blender/blenlib/intern/fileops.c
+++ b/source/blender/blenlib/intern/fileops.c
@@ -30,8 +30,8 @@
#include <errno.h>
-#include "zlib.h"
-#include "zstd.h"
+#include <zlib.h>
+#include <zstd.h>
#ifdef WIN32
# include "BLI_fileops_types.h"
diff --git a/source/blender/blenlib/intern/math_color_inline.c b/source/blender/blenlib/intern/math_color_inline.c
index ad4b844175f..8b3e3b11cff 100644
--- a/source/blender/blenlib/intern/math_color_inline.c
+++ b/source/blender/blenlib/intern/math_color_inline.c
@@ -27,7 +27,7 @@
#include "BLI_math_color.h"
#include "BLI_utildefines.h"
-#include "math.h"
+#include <math.h>
#ifndef __MATH_COLOR_INLINE_C__
# define __MATH_COLOR_INLINE_C__
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index 90ffebdb422..8b029d11c3f 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -51,8 +51,8 @@
# include "BLI_mesh_boolean.hh"
# ifdef WITH_TBB
-# include "tbb/parallel_reduce.h"
-# include "tbb/spin_mutex.h"
+# include <tbb/parallel_reduce.h>
+# include <tbb/spin_mutex.h>
# endif
// # define PERFDEBUG
diff --git a/source/blender/blenlib/intern/mesh_intersect.cc b/source/blender/blenlib/intern/mesh_intersect.cc
index 5651e52799e..526871c7b1f 100644
--- a/source/blender/blenlib/intern/mesh_intersect.cc
+++ b/source/blender/blenlib/intern/mesh_intersect.cc
@@ -53,7 +53,7 @@
# include "BLI_mesh_intersect.hh"
# ifdef WITH_TBB
-# include "tbb/parallel_sort.h"
+# include <tbb/parallel_sort.h>
# endif
// # define PERFDEBUG
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index 066749f3a94..2403d34e5d7 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -48,7 +48,7 @@
# include <shlobj.h>
# include <windows.h>
#else
-# include "unistd.h"
+# include <unistd.h>
#endif /* WIN32 */
#include "MEM_guardedalloc.h"