File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 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
22
33# Standard
44BasedOnStyle : llvm
@@ -20,6 +20,7 @@ ReflowComments: true
2020# Line breaking options
2121BreakBeforeBraces : Attach
2222BreakConstructorInitializers : BeforeColon
23+ AlwaysBreakTemplateDeclarations : true
2324AllowShortFunctionsOnASingleLine : Empty
2425IndentCaseLabels : true
2526NamespaceIndentation : Inner
Original file line number Diff line number Diff 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
2728public:
2829 void onRuntimeDestroyed (jsi::Runtime* rt) override {
You can’t perform that action at this time.
0 commit comments