bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 4/5] glr2.cc: don't publish move ctor to lalr1.cc


From: Akim Demaille
Subject: [PATCH 4/5] glr2.cc: don't publish move ctor to lalr1.cc
Date: Mon, 13 Sep 2021 07:28:15 +0200

These operators were introduced in "c++: add move assignments to the
symbol type" (fdaedc780af0dd678a4f4fa3175a201a553be20a) for glr2.cc.

* data/skeletons/c++.m4: Define them for glr2.cc only.
---
 data/skeletons/c++.m4 | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/data/skeletons/c++.m4 b/data/skeletons/c++.m4
index 7d74776d..c16741c7 100644
--- a/data/skeletons/c++.m4
+++ b/data/skeletons/c++.m4
@@ -346,7 +346,7 @@ m4_define([b4_symbol_type_define],
         clear ();
       }
 
-#if 201103L <= YY_CPLUSPLUS
+]b4_glr2_cc_if([[
       /// Move assignment.
       basic_symbol& operator= (basic_symbol&& that)
       {
@@ -357,7 +357,7 @@ m4_define([b4_symbol_type_define],
         location = std::move (that.location);]])[
         return *this;
       }
-#endif
+]])[
 
       /// Destroy contents, and record that is empty.
       void clear () YY_NOEXCEPT
@@ -437,10 +437,10 @@ m4_define([b4_symbol_type_define],
       /// Copy constructor.
       by_kind (const by_kind& that);
 
-#if 201103L <= YY_CPLUSPLUS
+]b4_glr2_cc_if([[
       /// Move assignment.
       by_kind& operator= (by_kind&& that);
-#endif
+]])[
 
       /// The symbol kind as needed by the constructor.
       typedef token_kind_type kind_type;
@@ -570,7 +570,7 @@ m4_define([b4_public_types_define],
     : kind_ (yytranslate_ (t))
   {}
 
-#if 201103L <= YY_CPLUSPLUS
+]b4_glr2_cc_if([[
   ]b4_inline([$1])]b4_parser_class[::by_kind&
   b4_parser_class[::by_kind::by_kind::operator= (by_kind&& that)
   {
@@ -578,7 +578,7 @@ m4_define([b4_public_types_define],
     that.clear ();
     return *this;
   }
-#endif
+]])[
 
   ]b4_inline([$1])[void
   ]b4_parser_class[::by_kind::clear () YY_NOEXCEPT
-- 
2.32.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]