diff options
author | vittorioromeo <mail@vittorioromeo.com> | 2024-02-04 16:59:54 +0100 |
---|---|---|
committer | vittorioromeo <mail@vittorioromeo.com> | 2024-02-04 16:59:54 +0100 |
commit | 71e0082ab035bdcd6372c6faf96596ce9eac5a3c (patch) | |
tree | 3b41cf720c248bc2d5c5ecff65bed5301264de7d /core/io/resource_loader.cpp | |
parent | b4e2a24c1f62088b3f7ce0197afc90832fc25009 (diff) | |
download | redot-engine-71e0082ab035bdcd6372c6faf96596ce9eac5a3c.tar.gz |
Extract 'SafeBinaryMutex' to separate header
This change simply extracts 'SafeBinaryMutex' from 'mutex.h' to
'safe_binary_mutex.h', in an effort to reduce the compilation
speed impact of including `mutex.h`.
Diffstat (limited to 'core/io/resource_loader.cpp')
-rw-r--r-- | core/io/resource_loader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/io/resource_loader.cpp b/core/io/resource_loader.cpp index 197c8813a7..2fb3bda87d 100644 --- a/core/io/resource_loader.cpp +++ b/core/io/resource_loader.cpp @@ -36,6 +36,7 @@ #include "core/object/script_language.h" #include "core/os/condition_variable.h" #include "core/os/os.h" +#include "core/os/safe_binary_mutex.h" #include "core/string/print_string.h" #include "core/string/translation.h" #include "core/variant/variant_parser.h" |