comparison examples/unwinddemo.cc @ 12254:23385f2c90b7 release-3-4-x

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents 6cb30a539481
children 460a3c6d8bf1
comparison
equal deleted inserted replaced
12253:1f14586af94c 12254:23385f2c90b7
19 NDArray b = args(1).array_value (); 19 NDArray b = args(1).array_value ();
20 20
21 if (! error_state) 21 if (! error_state)
22 { 22 {
23 unwind_protect::begin_frame ("Funwinddemo"); 23 unwind_protect::begin_frame ("Funwinddemo");
24 unwind_protect_ptr 24 unwind_protect_ptr (current_liboctave_warning_handler);
25 (current_liboctave_warning_handler);
26 set_liboctave_warning_handler(err_hand); 25 set_liboctave_warning_handler(err_hand);
27 retval = octave_value (quotient (a, b)); 26 retval = octave_value (quotient (a, b));
28 unwind_protect::run_frame ("Funwinddemo"); 27 unwind_protect::run_frame ("Funwinddemo");
29 } 28 }
30 } 29 }