Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit 9bfd0fe

Browse files
committed
style: run clang-format
1 parent cd90040 commit 9bfd0fe

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

include/proxy/v4/proxy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2456,7 +2456,7 @@ struct operator_dispatch;
24562456
#define PROD_DEF_RHS_ASSIGNMENT_OP_ACCESSOR(oq, pq, ne, ...) \
24572457
template <class P, class D, class R, class Arg> \
24582458
struct accessor<P, D, R(Arg&) oq ne> { \
2459-
friend Arg& operator __VA_ARGS__(Arg & arg, P pq self) ne { \
2459+
friend Arg& operator __VA_ARGS__(Arg& arg, P pq self) ne { \
24602460
proxy_invoke<D, R(Arg&) oq ne>(static_cast<P pq>(self), arg); \
24612461
return arg; \
24622462
} \

tests/proxy_reflection_tests.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ struct TraitsReflector {
1717
is_copy_constructible_(std::is_copy_constructible_v<T>),
1818
is_nothrow_move_constructible_(std::is_nothrow_move_constructible_v<T>),
1919
is_nothrow_destructible_(std::is_nothrow_destructible_v<T>),
20-
is_trivial_(std::is_trivially_default_constructible_v<T> && std::is_trivially_copyable_v<T>) {}
20+
is_trivial_(std::is_trivially_default_constructible_v<T> &&
21+
std::is_trivially_copyable_v<T>) {}
2122

2223
template <class Self, class R>
2324
struct accessor {

0 commit comments

Comments
 (0)