]> git.saurik.com Git - bison.git/commitdiff
lalr1.cc: add missing "inline".
authorAkim Demaille <demaille@gostai.com>
Tue, 8 Sep 2009 19:59:33 +0000 (21:59 +0200)
committerAkim Demaille <demaille@gostai.com>
Wed, 9 Sep 2009 14:38:36 +0000 (16:38 +0200)
* data/c++.m4 (b4_public_types_define): Add missing inline to
implementations provided in headers.

ChangeLog
data/c++.m4

index 8a9b526486702555c8799f05dc2a5d2aae12c197..572ebdc282ceef09a190fe63b9351f06093b408b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-09  Akim Demaille  <demaille@gostai.com>
+
+       lalr1.cc: add missing "inline".
+       * data/c++.m4 (b4_public_types_define): Add missing inline to
+       implementations provided in headers.
+
 2009-09-09  Akim Demaille  <demaille@gostai.com>
 
        %param: documentation.
index 946d9b695cb8010f072ce5a26f925f1f2967d149..cfe8a6cb8153c839f5e293db2234a02c5b2b137e 100644 (file)
@@ -204,6 +204,7 @@ m4_define([b4_public_types_define],
   }]b4_locations_if([[
 
   template <typename Exact>
+  inline
   ]b4_parser_class_name[::symbol_base_type<Exact>::symbol_base_type (const location_type& l)
     : value()
     , location(l)
@@ -211,6 +212,7 @@ m4_define([b4_public_types_define],
   }]])[
 
   template <typename Exact>
+  inline
   ]b4_parser_class_name[::symbol_base_type<Exact>::symbol_base_type (]b4_args(
           [const semantic_type& v],
           b4_locations_if([const location_type& l]))[)
@@ -220,6 +222,7 @@ m4_define([b4_public_types_define],
   }
 
   template <typename Exact>
+  inline
   const Exact&
   ]b4_parser_class_name[::symbol_base_type<Exact>::self () const
   {
@@ -227,6 +230,7 @@ m4_define([b4_public_types_define],
   }
 
   template <typename Exact>
+  inline
   Exact&
   ]b4_parser_class_name[::symbol_base_type<Exact>::self ()
   {
@@ -234,6 +238,7 @@ m4_define([b4_public_types_define],
   }
 
   template <typename Exact>
+  inline
   int
   ]b4_parser_class_name[::symbol_base_type<Exact>::type_get () const
   {
@@ -241,12 +246,14 @@ m4_define([b4_public_types_define],
   }
 
   // symbol_type.
+  inline
   ]b4_parser_class_name[::symbol_type::symbol_type ()
     : super_type ()
     , type ()
   {
   }
 
+  inline
   ]b4_parser_class_name[::symbol_type::symbol_type (]b4_args(
                 [int t],
                 b4_locations_if([const location_type& l]))[)
@@ -255,6 +262,7 @@ m4_define([b4_public_types_define],
   {
   }
 
+  inline
   ]b4_parser_class_name[::symbol_type::symbol_type (]b4_args(
                  [int t],
                  [const semantic_type& v],
@@ -264,12 +272,14 @@ m4_define([b4_public_types_define],
   {
   }
 
+  inline
   int
   ]b4_parser_class_name[::symbol_type::type_get_ () const
   {
     return type;
   }
 ]b4_lex_symbol_if([[
+  inline
   ]b4_parser_class_name[::token_type
   ]b4_parser_class_name[::symbol_type::token () const
   {