# # # patch "ChangeLog" # from [acf953050abbf6095af33d1fc4309abcd9107c90] # to [7ef2c15bdcaf6238b71ca447bdfa687605a55615] # # patch "commands.cc" # from [bbff3a70828f0eb0bd5129f8fa88babb782e37ad] # to [5a0ce67f30ac14cb2040d64beb9d67aa07f68bab] # ============================================================ --- ChangeLog acf953050abbf6095af33d1fc4309abcd9107c90 +++ ChangeLog 7ef2c15bdcaf6238b71ca447bdfa687605a55615 @@ -1,3 +1,8 @@ +2006-05-28 Richard Levitte + + * commands.cc (complete): namespace fixups as described in the + ROADMAP, completed. + 2006-05-27 Derek Scherger * annotate.cc: ============================================================ --- commands.cc bbff3a70828f0eb0bd5129f8fa88babb782e37ad +++ commands.cc 5a0ce67f30ac14cb2040d64beb9d67aa07f68bab @@ -378,10 +378,10 @@ complete(app_state & app, selectors::selector_type ty = selectors::sel_ident; { bool dummy_get_heads = false; - std::set completion_strings; + set completion_strings; selectors::complete_selector("", sels, ty, dummy_get_heads, completion_strings, app, true); - for (std::set::const_iterator i = completion_strings.begin(); + for (set::const_iterator i = completion_strings.begin(); i != completion_strings.end(); ++i) completions.insert(revision_id(*i)); }