From 9c85426e7768d8b79abc12504e44a2f2bb96e2d1 Mon Sep 17 00:00:00 2001 From: Yutetsu TAKATSUKASA Date: Thu, 13 May 2021 06:45:56 +0900 Subject: [PATCH] Internals: Fix build failure on older gcc such as 4.8.5 on CentOS7. No functional change is intended. (#2954) --- src/V3OptionParser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3OptionParser.h b/src/V3OptionParser.h index fe3d0b703..a42c5fca2 100644 --- a/src/V3OptionParser.h +++ b/src/V3OptionParser.h @@ -139,7 +139,7 @@ public: // CONSTRUCTORS explicit AppendHelper(V3OptionParser& parser) - : m_parser{parser} {} + : m_parser(parser) {} }; #define V3OPTION_PARSER_DECL_TAGS \