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:
authorSybren A. Stüvel <sybren@blender.org>2021-10-19 17:46:50 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-10-19 17:47:17 +0300
commit79a88b5e919d56b27e11cadb79ca30474c071af8 (patch)
tree9da0a2f711e012b2a2f8fe073cabc00cc33069cb /source/blender/blenkernel/intern/asset_library_service.cc
parent57f1379104e7e36dd60fc270253e4a4555f0e699 (diff)
Fix compilation error about undefined `PATH_MAX`
Diffstat (limited to 'source/blender/blenkernel/intern/asset_library_service.cc')
-rw-r--r--source/blender/blenkernel/intern/asset_library_service.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/asset_library_service.cc b/source/blender/blenkernel/intern/asset_library_service.cc
index 53ce2826022..dec71583441 100644
--- a/source/blender/blenkernel/intern/asset_library_service.cc
+++ b/source/blender/blenkernel/intern/asset_library_service.cc
@@ -24,6 +24,7 @@
#include "BKE_blender.h"
#include "BKE_callbacks.h"
+#include "BLI_fileops.h"
#include "BLI_path_util.h"
#include "BLI_string_ref.hh"