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-02-23 14:16:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-23 14:18:34 +0300
commit6eb59c57782724cdcbc1564356f2c2e2619c01ec (patch)
tree440ed66b7232e9ab945fc93a2be7a0c77c149379 /intern/clog
parent8214a1ae34ad7a08585813fc9234f927ea89a3dc (diff)
Cleanup: GCC redundant declarations
Previous waning suppression was only tested with clang.
Diffstat (limited to 'intern/clog')
-rw-r--r--intern/clog/CLG_log.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/intern/clog/CLG_log.h b/intern/clog/CLG_log.h
index 0cf1bda6625..810997ac78b 100644
--- a/intern/clog/CLG_log.h
+++ b/intern/clog/CLG_log.h
@@ -148,7 +148,6 @@ void CLG_logref_init(CLG_LogRef *clg_ref);
/** Declare outside function, declare as extern in header. */
#define CLG_LOGREF_DECLARE_GLOBAL(var, id) \
static CLG_LogRef _static_ ## var = {id}; \
- extern CLG_LogRef *var; \
CLG_LogRef *var = &_static_ ## var
/** Initialize struct once. */