From 7e6066c9c3a883dcef64fb675c0eb3cf10423a91 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 7 Feb 2022 15:32:34 +1100 Subject: Cleanup: clang-format --- source/blender/blenlib/BLI_string_ref.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/blenlib') 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(pos))); + return index_or_npos_to_int64(std::string_view(*this).find_last_of(c, static_cast(pos))); } constexpr int64_t StringRefBase::find_first_not_of(StringRef chars, int64_t pos) const -- cgit v1.2.3