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:
authorJacques Lucke <jacques@blender.org>2020-02-13 20:16:31 +0300
committerJacques Lucke <jacques@blender.org>2020-02-13 20:16:31 +0300
commit2e1d18600f39b6227799d5ffaa377bb9f7f51a68 (patch)
tree8f0037fe0b52f11257eda70e979ee06d53d7f32c
parente4343f6aa27480810d6634b62877f57cbc24b8c4 (diff)
remove unused code
-rw-r--r--source/blender/blenlib/BLI_lazy_init_cxx.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/blenlib/BLI_lazy_init_cxx.h b/source/blender/blenlib/BLI_lazy_init_cxx.h
index 0524a808d9b..277637520c0 100644
--- a/source/blender/blenlib/BLI_lazy_init_cxx.h
+++ b/source/blender/blenlib/BLI_lazy_init_cxx.h
@@ -77,9 +77,3 @@ void lazy_init_register(std::function<void()> free_func, const char *name);
return value; \
} \
std::unique_ptr<TYPE> NAME##_impl(void)
-
-#define BLI_LAZY_INIT_STATIC_VAR(type, func_name) \
- BLI_LAZY_INIT_STATIC(type, func_name) \
- { \
- return {}; \
- }