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:
authorHans Goudey <h.goudey@me.com>2022-06-23 02:58:25 +0300
committerHans Goudey <h.goudey@me.com>2022-06-23 02:58:25 +0300
commit1160a3a3f83cafda98e7bf6fb111bdacc5f28a63 (patch)
treeb969f2508aac0cb59cd3fe81119dc1301a84bfb0 /source/blender/io/common
parentd2a3b99ff7abb3d7deb30da4554b1cda6ff32766 (diff)
Cleanup: Clang tidy
Mainly duplicate includes and else after return.
Diffstat (limited to 'source/blender/io/common')
-rw-r--r--source/blender/io/common/intern/path_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/io/common/intern/path_util.cc b/source/blender/io/common/intern/path_util.cc
index 902cf552bf0..18632b410f8 100644
--- a/source/blender/io/common/intern/path_util.cc
+++ b/source/blender/io/common/intern/path_util.cc
@@ -39,7 +39,7 @@ std::string path_reference(StringRefNull filepath,
if (mode == PATH_REFERENCE_ABSOLUTE) {
return filepath_abs;
}
- else if (mode == PATH_REFERENCE_RELATIVE) {
+ if (mode == PATH_REFERENCE_RELATIVE) {
char rel_path[PATH_MAX];
BLI_strncpy(rel_path, filepath_abs, PATH_MAX);
BLI_path_rel(rel_path, base_dst.c_str());
@@ -49,7 +49,7 @@ std::string path_reference(StringRefNull filepath,
}
return rel_path + 2; /* Skip blender's internal "//" prefix. */
}
- else if (mode == PATH_REFERENCE_STRIP) {
+ if (mode == PATH_REFERENCE_STRIP) {
return BLI_path_basename(filepath_abs);
}
BLI_assert_msg(false, "Invalid path reference mode");