mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Apply 'make format'
This commit is contained in:
parent
165a2ef1b8
commit
1bd31742b9
10
src/V3Ast.h
10
src/V3Ast.h
@ -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>),
|
||||
|
Loading…
Reference in New Issue
Block a user