File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- # Config for clang-format version 16
1
+ # Config for clang-format version 18
2
2
3
3
# Standard
4
4
BasedOnStyle : llvm
@@ -20,6 +20,7 @@ ReflowComments: true
20
20
# Line breaking options
21
21
BreakBeforeBraces : Attach
22
22
BreakConstructorInitializers : BeforeColon
23
+ AlwaysBreakTemplateDeclarations : true
23
24
AllowShortFunctionsOnASingleLine : Empty
24
25
IndentCaseLabels : true
25
26
NamespaceIndentation : Inner
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ namespace jsi = facebook::jsi;
22
22
* managed by the runtime, accessing that portion of the memory after runtime is
23
23
* deleted is the root cause of that crash).
24
24
*/
25
- template <typename T> class RuntimeAwareCache : public RuntimeLifecycleListener {
25
+ template <typename T>
26
+ class RuntimeAwareCache : public RuntimeLifecycleListener {
26
27
27
28
public:
28
29
void onRuntimeDestroyed (jsi::Runtime* rt) override {
You can’t perform that action at this time.
0 commit comments