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:
authorJacques Lucke <jacques@blender.org>2020-07-13 17:55:39 +0300
committerJacques Lucke <jacques@blender.org>2020-07-13 17:55:39 +0300
commit91e67c7bdae43d1145d5aa544d98e9bc98925018 (patch)
tree749caeb47cf0a6ffdb424cd12dc4af18884cc3fd /source/blender/blenkernel/BKE_appdir.h
parent3d587efef2872a4466432679bad0c8bc6cc0a335 (diff)
Cleanup: remove some incorrectly placed consts
Clang-tidy reported that those parameters could be const, but that is not true on windows.
Diffstat (limited to 'source/blender/blenkernel/BKE_appdir.h')
-rw-r--r--source/blender/blenkernel/BKE_appdir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_appdir.h b/source/blender/blenkernel/BKE_appdir.h
index 7e2aaf291c5..e49fc260810 100644
--- a/source/blender/blenkernel/BKE_appdir.h
+++ b/source/blender/blenkernel/BKE_appdir.h
@@ -51,7 +51,7 @@ const char *BKE_appdir_program_path(void);
const char *BKE_appdir_program_dir(void);
/* Return OS fonts directory. */
-bool BKE_appdir_font_folder_default(const char *dir);
+bool BKE_appdir_font_folder_default(char *dir);
/* find python executable */
bool BKE_appdir_program_python_search(char *fullpath,