changeset 30015:af135277dc50

* symtab.h: Fix syntax errors introduced in changeset 4c88a452519c.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Aug 2021 16:36:35 -0400
parents 18bddb0dd084
children ad6a57b215e8
files libinterp/corefcn/symtab.h
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/symtab.h	Thu Aug 19 08:24:05 2021 -0700
+++ b/libinterp/corefcn/symtab.h	Thu Aug 19 16:36:35 2021 -0400
@@ -291,7 +291,7 @@
 
     OCTAVE_DEPRECATED (6, "use 'interpreter::assign' instead")
     void assign (const std::string& name,
-                 const octave_value& value = octave_value ());
+                 const octave_value& value = octave_value ())
     {
       assign_deprecated (name, value);
     }
@@ -299,13 +299,13 @@
     // Note, FORCE_ADD no longer has any meaning.
     OCTAVE_DEPRECATED (6, "use 'interpreter::assign' instead")
     void assign (const std::string& name, const octave_value& value,
-                 bool /*force_add*/);
+                 bool /*force_add*/)
     {
       assign_deprecated (name, value);
     }
 
     OCTAVE_DEPRECATED (6, "use 'interpreter::clear_all' instead")
-    void clear_all (bool force = false);
+    void clear_all (bool force = false)
     {
       clear_all_deprecated (force);
     }
@@ -336,7 +336,7 @@
 
     OCTAVE_DEPRECATED (6, "use 'interpreter::global_assign' instead")
     void global_assign (const std::string& name,
-                        const octave_value& value = octave_value ());
+                        const octave_value& value = octave_value ())
     {
       global_assign_deprecated (name, value);
     }