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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-11 01:22:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-11 01:33:20 +0300
commitb1e286bbfe9b8632a93ba40a7a40c77652479b7c (patch)
treec3d5a3c0f29cbe70820a3a0850c27a2c6a9385c0 /source/blender/blenlib
parentf974a02285c74f669a1714e98de86ba39293bc21 (diff)
MSVC: remove compiler __func__ define
No longer needed and exposes a bug in clang-format see: D4185
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_compiler_compat.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_compiler_compat.h b/source/blender/blenlib/BLI_compiler_compat.h
index 2b53975a106..3a38cdcb5fd 100644
--- a/source/blender/blenlib/BLI_compiler_compat.h
+++ b/source/blender/blenlib/BLI_compiler_compat.h
@@ -28,7 +28,6 @@
*/
#if defined(_MSC_VER)
-# define __func__ __FUNCTION__
# define alloca _alloca
#endif