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:
authorThomas Dinges <blender@dingto.org>2011-09-10 13:06:42 +0400
committerThomas Dinges <blender@dingto.org>2011-09-10 13:06:42 +0400
commit571f7db529c3e0f351b90e7e76b1e7aba878b3a7 (patch)
treebf0100fb36ea5f034084acb65201361864af2fd5 /source/blender/editors
parent129452ebab3192415ab6329dd5c6acf438d2f18c (diff)
MSVC build fix by MiikaH for NAVMESH. Thanks! :)
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/util/navmesh_conversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/util/navmesh_conversion.cpp b/source/blender/editors/util/navmesh_conversion.cpp
index 255e3387ab2..aebd9624bc7 100644
--- a/source/blender/editors/util/navmesh_conversion.cpp
+++ b/source/blender/editors/util/navmesh_conversion.cpp
@@ -279,7 +279,7 @@ struct SortContext
const int* trisToFacesMap;
};
#if defined(_MSC_VER)
-static int compareByData(const void* data, void * a, void * b)
+static int compareByData(void* data, const void * a, const void * b)
#else
static int compareByData(const void * a, const void * b, void* data)
#endif