[Bf-blender-cvs] [7e6066c9c3a] master: Cleanup: clang-format

Campbell Barton noreply at git.blender.org
Mon Feb 7 05:34:28 CET 2022


Commit: 7e6066c9c3a883dcef64fb675c0eb3cf10423a91
Author: Campbell Barton
Date:   Mon Feb 7 15:32:34 2022 +1100
Branches: master
https://developer.blender.org/rB7e6066c9c3a883dcef64fb675c0eb3cf10423a91

Cleanup: clang-format

===================================================================

M	source/blender/blenlib/BLI_string_ref.hh
M	source/blender/editors/space_view3d/view3d_navigate_fly.c
M	source/blender/editors/space_view3d/view3d_navigate_walk.c

===================================================================

diff --git a/source/blender/blenlib/BLI_string_ref.hh b/source/blender/blenlib/BLI_string_ref.hh
index f72106aa961..32a03213dc1 100644
--- a/source/blender/blenlib/BLI_string_ref.hh
+++ b/source/blender/blenlib/BLI_string_ref.hh
@@ -373,8 +373,7 @@ constexpr int64_t StringRefBase::find_last_of(StringRef chars, int64_t pos) cons
 constexpr int64_t StringRefBase::find_last_of(char c, int64_t pos) const
 {
   BLI_assert(pos >= 0);
-  return index_or_npos_to_int64(
-      std::string_view(*this).find_last_of(c, static_cast<size_t>(pos)));
+  return index_or_npos_to_int64(std::string_view(*this).find_last_of(c, static_cast<size_t>(pos)));
 }
 
 constexpr int64_t StringRefBase::find_first_not_of(StringRef chars, int64_t pos) const
diff --git a/source/blender/editors/space_view3d/view3d_navigate_fly.c b/source/blender/editors/space_view3d/view3d_navigate_fly.c
index 05f6a10d89f..940616eec1f 100644
--- a/source/blender/editors/space_view3d/view3d_navigate_fly.c
+++ b/source/blender/editors/space_view3d/view3d_navigate_fly.c
@@ -1103,9 +1103,9 @@ static int fly_modal(bContext *C, wmOperator *op, const wmEvent *event)
   }
   else
 #endif /* WITH_INPUT_NDOF */
-    if (event->type == TIMER && event->customdata == fly->timer) {
-      flyApply(C, fly, false);
-    }
+      if (event->type == TIMER && event->customdata == fly->timer) {
+    flyApply(C, fly, false);
+  }
 
   do_draw |= fly->redraw;
 
diff --git a/source/blender/editors/space_view3d/view3d_navigate_walk.c b/source/blender/editors/space_view3d/view3d_navigate_walk.c
index 4d6df2b655a..d72fa3cb90f 100644
--- a/source/blender/editors/space_view3d/view3d_navigate_walk.c
+++ b/source/blender/editors/space_view3d/view3d_navigate_walk.c
@@ -1487,9 +1487,9 @@ static int walk_modal(bContext *C, wmOperator *op, const wmEvent *event)
   }
   else
 #endif /* WITH_INPUT_NDOF */
-    if (event->type == TIMER && event->customdata == walk->timer) {
-      walkApply(C, walk, false);
-    }
+      if (event->type == TIMER && event->customdata == walk->timer) {
+    walkApply(C, walk, false);
+  }
 
   do_draw |= walk->redraw;



More information about the Bf-blender-cvs mailing list