mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Style: Fix issues that went past CI
This commit is contained in:
@@ -69,7 +69,7 @@ struct ThreadLocalStorage::Impl {
|
||||
#define _CALLBACK_FUNC_
|
||||
#endif
|
||||
|
||||
Impl(void (_CALLBACK_FUNC_ *p_destr_callback_func)(void *)) {
|
||||
Impl(void(_CALLBACK_FUNC_ *p_destr_callback_func)(void *)) {
|
||||
#ifdef WINDOWS_ENABLED
|
||||
dwFlsIndex = FlsAlloc(p_destr_callback_func);
|
||||
ERR_FAIL_COND(dwFlsIndex == FLS_OUT_OF_INDEXES);
|
||||
@@ -95,7 +95,7 @@ void ThreadLocalStorage::set_value(void *p_value) const {
|
||||
pimpl->set_value(p_value);
|
||||
}
|
||||
|
||||
void ThreadLocalStorage::alloc(void (_CALLBACK_FUNC_ *p_destr_callback)(void *)) {
|
||||
void ThreadLocalStorage::alloc(void(_CALLBACK_FUNC_ *p_destr_callback)(void *)) {
|
||||
pimpl = memnew(ThreadLocalStorage::Impl(p_destr_callback));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user