Apply 'make format'

This commit is contained in:
github action 2023-10-23 12:49:33 +00:00 committed by Geza Lore
parent 165a2ef1b8
commit 1bd31742b9

View File

@ -2688,16 +2688,10 @@ public:
template <typename U>
// cppcheck-suppress noExplicitConstructor
VNRef(U&& x)
: std::reference_wrapper<T_Node> {
x
}
{}
: std::reference_wrapper<T_Node>{x} {}
// cppcheck-suppress noExplicitConstructor
VNRef(const std::reference_wrapper<T_Node>& other)
: std::reference_wrapper<T_Node> {
other
}
{}
: std::reference_wrapper<T_Node>{other} {}
};
static_assert(sizeof(VNRef<AstNode>) == sizeof(std::reference_wrapper<AstNode>),