Cleanup: use system includes

This commit is contained in:
Campbell Barton 2021-10-04 13:12:38 +11:00
parent 6e48a51af7
commit 3c3669894f
13 changed files with 19 additions and 18 deletions

View File

@ -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

View File

@ -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"

View File

@ -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__

View File

@ -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

View File

@ -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

View File

@ -48,7 +48,7 @@
# include <shlobj.h>
# include <windows.h>
#else
# include "unistd.h"
# include <unistd.h>
#endif /* WIN32 */
#include "MEM_guardedalloc.h"

View File

@ -32,7 +32,7 @@
# include <dirent.h>
#endif
#include "png.h"
#include <png.h>
/* for Win32 DIR functions */
#ifdef WIN32

View File

@ -57,7 +57,7 @@
# include "io_usd.h"
# include "usd.h"
# include "stdio.h"
# include <stdio.h>
const EnumPropertyItem rna_enum_usd_export_evaluation_mode_items[] = {
{DAG_EVAL_RENDER,

View File

@ -18,14 +18,14 @@
* \ingroup edutil
*/
#include <float.h>
#include "BLI_kdtree.h"
#include "BLI_math.h"
#include "BLI_utildefines.h"
#include "ED_select_utils.h"
#include "float.h"
/** 1: select, 0: deselect, -1: pass. */
int ED_select_op_action(const eSelectOp sel_op, const bool is_select, const bool is_inside)
{

View File

@ -40,8 +40,9 @@
#include "IMB_imbuf_types.h"
#include "IMB_metadata.h"
#include "imbuf.h"
#include "jerror.h"
#include "jpeglib.h"
#include <jerror.h>
#include <jpeglib.h>
#include "IMB_colormanagement.h"
#include "IMB_colormanagement_intern.h"

View File

@ -23,7 +23,7 @@
* \todo Save floats as 16 bits per channel, currently readonly.
*/
#include "png.h"
#include <png.h>
#include "BLI_fileops.h"
#include "BLI_math.h"

View File

@ -52,7 +52,7 @@
#include "IMB_colormanagement.h"
#include "IMB_colormanagement_intern.h"
#include "tiffio.h"
#include <tiffio.h>
#ifdef WIN32
# include "utfconv.h"

View File

@ -33,8 +33,8 @@
#include "BLI_math_base.h"
#include "IMB_imbuf.h"
#include "jerror.h"
#include "jpeglib.h"
#include <jerror.h>
#include <jpeglib.h>
#include "avi_mjpeg.h"