diff liboctave/prog-args.h @ 10192:fc95c80058d8

don't make prog_args member functions const
author John W. Eaton <jwe@octave.org>
date Fri, 22 Jan 2010 16:50:43 -0500
parents a552859b009a
children
line wrap: on
line diff
--- a/liboctave/prog-args.h
+++ b/liboctave/prog-args.h
@@ -55,11 +55,11 @@
 
   ~prog_args (void) { }
 
-  int get_option (void) const;
+  int get_option (void);
 
-  const char *option_argument (void) const;
+  const char *option_argument (void);
 
-  int option_index (void) const;
+  int option_index (void);
 
 private: