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:
authorDalai Felinto <dalai@blender.org>2020-03-19 11:33:03 +0300
committerDalai Felinto <dalai@blender.org>2020-03-19 11:33:58 +0300
commit2d1cce8331f3ecdfb8cb0c651e111ffac5dc7153 (patch)
treeec50d7bdca3901a6afcc986943011f08f9516307 /intern/memutil
parent008aaaa37841ca27d2bba80d8859336655cef455 (diff)
Cleanup: `make format` after SortedIncludes change
Diffstat (limited to 'intern/memutil')
-rw-r--r--intern/memutil/MEM_Allocator.h2
-rw-r--r--intern/memutil/MEM_CacheLimiter.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/memutil/MEM_Allocator.h b/intern/memutil/MEM_Allocator.h
index dc7ddcefeeb..50a3e978197 100644
--- a/intern/memutil/MEM_Allocator.h
+++ b/intern/memutil/MEM_Allocator.h
@@ -21,8 +21,8 @@
#ifndef __MEM_ALLOCATOR_H__
#define __MEM_ALLOCATOR_H__
-#include <stddef.h>
#include "guardedalloc/MEM_guardedalloc.h"
+#include <stddef.h>
template<typename _Tp> struct MEM_Allocator {
typedef size_t size_type;
diff --git a/intern/memutil/MEM_CacheLimiter.h b/intern/memutil/MEM_CacheLimiter.h
index a13c3f518db..6ca61fbcde1 100644
--- a/intern/memutil/MEM_CacheLimiter.h
+++ b/intern/memutil/MEM_CacheLimiter.h
@@ -53,10 +53,10 @@
* \endcode
*/
+#include "MEM_Allocator.h"
#include <list>
#include <queue>
#include <vector>
-#include "MEM_Allocator.h"
template<class T> class MEM_CacheLimiter;