Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit afa15d4

Browse files
committedFeb 25, 2025·
Disable clang-format for type alias SchemaTreeNodeInsertionHandle
1 parent 924ee18 commit afa15d4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎src/clp_ffi_py/ir/native/PyDeserializer.hpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,13 @@ class PyDeserializer {
130130
= std::function<clp::ffi::ir_stream::IRErrorCode(clp::ffi::KeyValuePairLogEvent&&)>;
131131
using UtcOffsetChangeHandle
132132
= std::function<clp::ffi::ir_stream::IRErrorCode(clp::UtcOffset, clp::UtcOffset)>;
133+
// clang-format off
133134
using SchemaTreeNodeInsertionHandle = std::function<clp::ffi::ir_stream::IRErrorCode(
134-
(bool,
135-
clp::ffi::SchemaTree::NodeLocator,
136-
std::shared_ptr<clp::ffi::SchemaTree const> const&)
135+
bool,
136+
clp::ffi::SchemaTree::NodeLocator,
137+
std::shared_ptr<clp::ffi::SchemaTree const> const&
137138
)>;
139+
// clang-format on
138140
using EndOfStreamHandle = std::function<clp::ffi::ir_stream::IRErrorCode()>;
139141

140142
// Constructor

0 commit comments

Comments
 (0)
Please sign in to comment.