diff --git a/source/blender/blenlib/intern/memory_cache_file_load.cc b/source/blender/blenlib/intern/memory_cache_file_load.cc index ba6c1801b3a..d08a1a9b9e5 100644 --- a/source/blender/blenlib/intern/memory_cache_file_load.cc +++ b/source/blender/blenlib/intern/memory_cache_file_load.cc @@ -2,13 +2,13 @@ * * SPDX-License-Identifier: GPL-2.0-or-later */ -#include #include #include "BLI_fileops.hh" #include "BLI_hash.hh" #include "BLI_map.hh" #include "BLI_memory_cache_file_load.hh" +#include "BLI_mutex.hh" #include "BLI_task.hh" #include "BLI_vector.hh" #include "BLI_vector_set.hh" @@ -76,7 +76,7 @@ static std::optional get_file_modification_time(const StringRefNull pat } struct FileStatMap { - std::mutex mutex; + Mutex mutex; Map> map; };