summaryrefslogtreecommitdiffstats
path: root/source/core/slang-string.cpp
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-11-06 01:47:26 +0800
committerGitHub <noreply@github.com>2024-11-05 09:47:26 -0800
commitb118451e301d734e3e783b3acdf871f3f6ea851c (patch)
tree277f160d31e2c442f724bc6a2d3c09fabff403ca /source/core/slang-string.cpp
parent53dd5928c35d5a5cb1f7d2a563348fd1fa87d672 (diff)
Move switch statement bodies to their own lines (#5493)
* Move switch statement bodies to their own lines * format --------- Co-authored-by: Yong He <yonghe@outlook.com>
Diffstat (limited to 'source/core/slang-string.cpp')
-rw-r--r--source/core/slang-string.cpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/source/core/slang-string.cpp b/source/core/slang-string.cpp
index b58d466fa..e9804eaa8 100644
--- a/source/core/slang-string.cpp
+++ b/source/core/slang-string.cpp
@@ -367,11 +367,16 @@ OSString String::toWString(Index* outLength) const
List<Byte> buf;
switch (sizeof(wchar_t))
{
- case 2: Slang::CharEncoding::UTF16->encode(getUnownedSlice(), buf); break;
+ case 2:
+ Slang::CharEncoding::UTF16->encode(getUnownedSlice(), buf);
+ break;
- case 4: Slang::CharEncoding::UTF32->encode(getUnownedSlice(), buf); break;
+ case 4:
+ Slang::CharEncoding::UTF32->encode(getUnownedSlice(), buf);
+ break;
- default: break;
+ default:
+ break;
}
auto length = Index(buf.getCount() / sizeof(wchar_t));
@@ -688,9 +693,12 @@ Index UnownedStringSlice::indexOf(const UnownedStringSlice& in) const
const char* inChars = in.m_begin;
switch (inLen)
{
- case 0: return 0;
- case 1: return indexOf(inChars[0]);
- default: break;
+ case 0:
+ return 0;
+ case 1:
+ return indexOf(inChars[0]);
+ default:
+ break;
}
const char* chars = m_begin;