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:
authorJulian Eisel <julian@blender.org>2021-11-01 16:44:18 +0300
committerJulian Eisel <julian@blender.org>2021-11-01 16:44:18 +0300
commit9de4f64197b8daa24e74745c1a74bfc94cc79eb2 (patch)
tree8330a414b6e25be1f1abecd83c5b3fc12d64be0a /source/blender/blenkernel/intern/asset_library_service.cc
parent6897c2141e028005b251214d6d5dc7fc8c3802b0 (diff)
Fix compile error on Windows
Caused by 7150f919d3ca. This undid part of 79a88b5e919d. Added a comment for why this include is needed, to avoid this error from happening again.
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 4619ecb2e42..d202d6462cf 100644
--- a/source/blender/blenkernel/intern/asset_library_service.cc
+++ b/source/blender/blenkernel/intern/asset_library_service.cc
@@ -22,6 +22,7 @@
#include "BKE_blender.h"
+#include "BLI_fileops.h" /* For PATH_MAX (at least on Windows). */
#include "BLI_path_util.h"
#include "BLI_string_ref.hh"