comparison libinterp/parse-tree/pt-eval.h @ 23458:0f4ed33886de

maint: Strip trailing whitespace from source files.
author John W. Eaton <jwe@octave.org>
date Fri, 28 Apr 2017 16:40:17 -0400
parents 21baad6b35c4
children 2699c5974844
comparison
equal deleted inserted replaced
23457:21baad6b35c4 23458:0f4ed33886de
77 void clear (void) 77 void clear (void)
78 { 78 {
79 while (! m_stack.empty ()) 79 while (! m_stack.empty ())
80 m_stack.pop (); 80 m_stack.pop ();
81 } 81 }
82 82
83 private: 83 private:
84 84
85 std::stack<T> m_stack; 85 std::stack<T> m_stack;
86 }; 86 };
87 87