comparison libinterp/octave-value/ov-fcn-handle.cc @ 21751:b571fc85953f

maint: Use two spaces after period to indicate sentence break.
author Rik <rik@octave.org>
date Thu, 19 May 2016 18:48:52 -0700
parents bf1121302404
children 0cdfd6d230e6
comparison
equal deleted inserted replaced
21750:6720e5a220ba 21751:b571fc85953f
1570 // Locally visible function. 1570 // Locally visible function.
1571 retval = octave_value (new octave_fcn_handle (f, tnm)); 1571 retval = octave_value (new octave_fcn_handle (f, tnm));
1572 } 1572 }
1573 else 1573 else
1574 { 1574 {
1575 // Globally visible (or no match yet). Query overloads. 1575 // Globally visible (or no match yet). Query overloads.
1576 std::list<std::string> classes = load_path::overloads (tnm); 1576 std::list<std::string> classes = load_path::overloads (tnm);
1577 bool any_match = fptr != 0 || classes.size () > 0; 1577 bool any_match = fptr != 0 || classes.size () > 0;
1578 if (! any_match) 1578 if (! any_match)
1579 { 1579 {
1580 // No match found, try updating load_path and query classes again. 1580 // No match found, try updating load_path and query classes again.