diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-03 08:43:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-03 08:43:43 +0200 |
| commit | 64962fe605b48ecec3a5cde53c73c220031ececc (patch) | |
| tree | 974d7870e5f7fea6384b1eba55d1ca207e9463e4 /modules/mono/utils | |
| parent | 9941c5a13260a3abe7a131d3f1f6c5fa1ef8e6b6 (diff) | |
| parent | 2c8980f44cda8ac75890c54305c87dd85a83361a (diff) | |
| download | redot-engine-64962fe605b48ecec3a5cde53c73c220031ececc.tar.gz | |
Merge pull request #22653 from neikeq/mono-mod-fix-gcc-warnings
Fix GCC compiler warning in mono module
Diffstat (limited to 'modules/mono/utils')
| -rw-r--r-- | modules/mono/utils/mono_reg_utils.cpp | 2 | ||||
| -rw-r--r-- | modules/mono/utils/thread_local.h | 20 |
2 files changed, 14 insertions, 8 deletions
diff --git a/modules/mono/utils/mono_reg_utils.cpp b/modules/mono/utils/mono_reg_utils.cpp index 8116df5f51..6bb6efa92a 100644 --- a/modules/mono/utils/mono_reg_utils.cpp +++ b/modules/mono/utils/mono_reg_utils.cpp @@ -228,4 +228,4 @@ cleanup: } } // namespace MonoRegUtils -#endif WINDOWS_ENABLED +#endif // WINDOWS_ENABLED diff --git a/modules/mono/utils/thread_local.h b/modules/mono/utils/thread_local.h index 84dae1d86b..d7d98c47e2 100644 --- a/modules/mono/utils/thread_local.h +++ b/modules/mono/utils/thread_local.h @@ -108,17 +108,23 @@ class ThreadLocal { return data; } + void _initialize(const T &p_init_val) { + init_val = p_init_val; + storage.alloc(&destr_callback); + } + public: - ThreadLocal() : - ThreadLocal(T()) {} + ThreadLocal() { + _initialize(T()); + } - ThreadLocal(const T &p_init_val) : - init_val(p_init_val) { - storage.alloc(&destr_callback); + ThreadLocal(const T &p_init_val) { + _initialize(p_init_val); } - ThreadLocal(const ThreadLocal &other) : - ThreadLocal(*other._tls_get_value()) {} + ThreadLocal(const ThreadLocal &other) { + _initialize(*other._tls_get_value()); + } ~ThreadLocal() { storage.free(); |
