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
path: root/tests
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2019-03-14 20:14:12 +0300
committerRay Molenkamp <github@lazydodo.com>2019-03-14 20:14:44 +0300
commit55e79d8f36c602f08a4588f697606b5a9eb55a4c (patch)
treecb4ebb8abb59c8d40121066148dcca490b42bbd6 /tests
parent3ab879ed5a58145e7d5530144dc7fa4d6edc5b91 (diff)
Tests: BLI_heap_simple test fix build error with MSVC.
BLI_heap_simple.h uses types from BLI_sys_types.h causing a build error on windows.
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_heap_simple_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/gtests/blenlib/BLI_heap_simple_test.cc b/tests/gtests/blenlib/BLI_heap_simple_test.cc
index 29aa8f23c49..9c97163f337 100644
--- a/tests/gtests/blenlib/BLI_heap_simple_test.cc
+++ b/tests/gtests/blenlib/BLI_heap_simple_test.cc
@@ -4,6 +4,7 @@
#include <string.h>
extern "C" {
+#include "BLI_sys_types.h"
#include "BLI_compiler_attrs.h"
#include "BLI_heap_simple.h"
#include "BLI_utildefines.h"