# HG changeset patch # User John W. Eaton # Date 1222456781 14400 # Node ID 344c9b6532a2dbc0f5ca9a8abff57530f4225274 # Parent 265a821f65557a6925bb84df943473159e7e82e4 symtab.cc (out_of_date_check_internal): fix order of arguments in call to load_path::find_method diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-09-26 John W. Eaton + + * symtab.cc (out_of_date_check_internal): + Fix order of arguments in call to load_path::find_method. + 2008-09-26 David Bateman * ov-class.h (idx_vector index_vector (void) const): Declare new diff --git a/src/symtab.cc b/src/symtab.cc --- a/src/symtab.cc +++ b/src/symtab.cc @@ -194,7 +194,7 @@ // decide whether it came from a relative lookup. if (! dispatch_type.empty ()) - file = load_path::find_method (nm, dispatch_type, + file = load_path::find_method (dispatch_type, nm, dir_name); if (file.empty ())