# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1342474347 14400 # Node ID 2309812f428edf18222a66376a743fc35bf46c67 # Parent bbdc822be2b90bad536dc1e11424574ae0ef705b Use explicit false and true instead of 0 and 1 * ov-usr-fcn.cc (octave_user_function::mark_as_system_fcn_file): Replace logical 1 with true and logical 0 with false diff -r bbdc822be2b9 -r 2309812f428e src/ov-usr-fcn.cc --- a/src/ov-usr-fcn.cc Sat Jul 14 09:59:41 2012 -0700 +++ b/src/ov-usr-fcn.cc Mon Jul 16 17:32:27 2012 -0400 @@ -261,10 +261,10 @@ std::string ff_name = fcn_file_in_path (file_name); if (Vfcn_file_dir == ff_name.substr (0, Vfcn_file_dir.length ())) - system_fcn_file = 1; + system_fcn_file = true; } else - system_fcn_file = 0; + system_fcn_file = false; } bool