summaryrefslogtreecommitdiffstats
path: root/source/core/slang-io.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-io.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-io.cpp')
-rw-r--r--source/core/slang-io.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/core/slang-io.cpp b/source/core/slang-io.cpp
index 25c4c9389..7bfde7bd7 100644
--- a/source/core/slang-io.cpp
+++ b/source/core/slang-io.cpp
@@ -381,7 +381,8 @@ String Path::combine(const String& path1, const String& path2, const String& pat
return element[1] == ':' && ((firstChar >= 'a' && firstChar <= 'z') ||
(firstChar >= 'A' && firstChar <= 'Z'));
}
- default: return false;
+ default:
+ return false;
}
}
@@ -783,7 +784,8 @@ SlangResult Path::remove(const String& path)
}
break;
}
- default: break;
+ default:
+ break;
}
return SLANG_FAIL;
@@ -1025,13 +1027,15 @@ static SlangResult _calcExectuablePath(char* outPath, size_t* ioSize)
uint32_t size = uint32_t(*ioSize);
switch (_NSGetExecutablePath(outPath, &size))
{
- case 0: return SLANG_OK;
+ case 0:
+ return SLANG_OK;
case -1:
{
*ioSize = size;
return SLANG_E_BUFFER_TOO_SMALL;
}
- default: break;
+ default:
+ break;
}
return SLANG_FAIL;
#else