Changeset 1217 for trunk/lib/SVN.cc


Ignore:
Timestamp:
Oct 10, 2010, 2:46:37 AM (13 years ago)
Author:
Peter Johansson
Message:

update docs and remove third argument in cleanup_failed_init since the bool was not used in function. refs #371

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/SVN.cc

    r1216 r1217  
    132132                              context_->cancel_baton, pool_))){
    133133      if (err->apr_err == SVN_ERR_WC_NOT_DIRECTORY)
    134         cleanup_failed_init(err, std::string(err->message), true);
     134        cleanup_failed_init(err, std::string(err->message));
    135135      cleanup_failed_init(err, "SVN: svn_wc_adm_open3 failed");
    136136    }
     
    173173
    174174
    175   void SVN::cleanup_failed_init(svn_error_t *err, const std::string& message,
    176                                 bool mute)
     175  void SVN::cleanup_failed_init(svn_error_t *err, const std::string& message)
    177176  {
    178177    assert(message.size()); // compatible with r1213
Note: See TracChangeset for help on using the changeset viewer.