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:
Diffstat (limited to 'source/blender/blenlib/BLI_array_ref.h')
-rw-r--r--source/blender/blenlib/BLI_array_ref.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_array_ref.h b/source/blender/blenlib/BLI_array_ref.h
index 6cc96cedc83..2c2e441a47d 100644
--- a/source/blender/blenlib/BLI_array_ref.h
+++ b/source/blender/blenlib/BLI_array_ref.h
@@ -35,15 +35,15 @@
* Since array references do not own any memory, it is generally not save to store them.
*/
-#include <vector>
-#include <array>
#include <algorithm>
+#include <array>
#include <iostream>
#include <string>
+#include <vector>
-#include "BLI_utildefines.h"
-#include "BLI_memory_utils_cxx.h"
#include "BLI_index_range.h"
+#include "BLI_memory_utils_cxx.h"
+#include "BLI_utildefines.h"
namespace BLI {