Skip to content

Commit 970cddf

Browse files
committed
chore: fix ci
1 parent c38a47e commit 970cddf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package/.clang-format

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Config for clang-format version 16
1+
# Config for clang-format version 18
22

33
# Standard
44
BasedOnStyle: llvm
@@ -20,6 +20,7 @@ ReflowComments: true
2020
# Line breaking options
2121
BreakBeforeBraces: Attach
2222
BreakConstructorInitializers: BeforeColon
23+
AlwaysBreakTemplateDeclarations: true
2324
AllowShortFunctionsOnASingleLine: Empty
2425
IndentCaseLabels: true
2526
NamespaceIndentation: Inner

package/cpp/base/WKTRuntimeAwareCache.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ namespace jsi = facebook::jsi;
2222
* managed by the runtime, accessing that portion of the memory after runtime is
2323
* deleted is the root cause of that crash).
2424
*/
25-
template <typename T> class RuntimeAwareCache : public RuntimeLifecycleListener {
25+
template <typename T>
26+
class RuntimeAwareCache : public RuntimeLifecycleListener {
2627

2728
public:
2829
void onRuntimeDestroyed(jsi::Runtime* rt) override {

0 commit comments

Comments
 (0)