changeset 16185:e810e7d941a1

* lex.h (octave_lexer::octave_lexer): Explicity initialize token_stack.
author John W. Eaton <jwe@octave.org>
date Sun, 03 Mar 2013 15:46:53 -0500
parents 05313332d541
children b4a6895a9863
files libinterp/parse-tree/lex.h
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/lex.h	Sun Mar 03 11:42:52 2013 -0800
+++ b/libinterp/parse-tree/lex.h	Sun Mar 03 15:46:53 2013 -0500
@@ -197,7 +197,8 @@
       looping (0), defining_func (0), looking_at_function_handle (0),
       block_comment_nesting_level (0),
       looking_at_object_index (), parsed_function_name (),
-      pending_local_variables (), nesting_level (), input_buf ()
+      pending_local_variables (), nesting_level (), input_buf (),
+      token_stack ()
   {
     init ();
   }