From 1bd31742b953fec88bc2ec00a9b790e49d39e7e9 Mon Sep 17 00:00:00 2001 From: github action Date: Mon, 23 Oct 2023 12:49:33 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Ast.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/V3Ast.h b/src/V3Ast.h index 1a41b770e7..79fdfd3e36 100644 --- a/src/V3Ast.h +++ b/src/V3Ast.h @@ -2688,16 +2688,10 @@ class VNRef final : public std::reference_wrapper { template // cppcheck-suppress noExplicitConstructor VNRef(U&& x) - : std::reference_wrapper { - x - } - {} + : std::reference_wrapper{x} {} // cppcheck-suppress noExplicitConstructor VNRef(const std::reference_wrapper& other) - : std::reference_wrapper { - other - } - {} + : std::reference_wrapper{other} {} }; static_assert(sizeof(VNRef) == sizeof(std::reference_wrapper),