Welcome to mirror list, hosted at ThFree Co, Russian Federation.

collections_port.h.mingw.patch « patches « ceres « third_party « libmv « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbb366e22bc76f9c311ce716c1c9000f306b4005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: internal/ceres/collections_port.h
===================================================================
--- internal/ceres/collections_port.h	(revision 47730)
+++ internal/ceres/collections_port.h	(working copy)
@@ -53,7 +53,7 @@
 template<typename K>
 struct HashSet : tr1::unordered_set<K> {};
 
-#ifdef _WIN32
+#if defined(_WIN32) && !defined(__MINGW64__) && !defined(__MINGW32__)
 #define GG_LONGLONG(x) x##I64
 #define GG_ULONGLONG(x) x##UI64
 #else