Changeset 704
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Stats.cc
r703 r704 511 511 for (size_t i=0; i<stats_.size(); ++i){ 512 512 stats_[i].clear(); 513 stats_[i]["all"]=std::vector<unsigned int>(revision_+1); 513 std::vector<unsigned int>& tmp = stats_[i]["all"]; 514 std::fill(tmp.begin(), tmp.end(), 0); 515 tmp.resize(revision_+1); 514 516 } 515 517 authors_.clear(); -
trunk/lib/Stats.h
r703 r704 99 99 100 100 /** 101 Do the parsing for \a path. Revisions from \a r v will be parsed.101 Do the parsing for \a path. Revisions from \a rev will be parsed. 102 102 */ 103 103 void parse(const std::string& path, svn_revnum_t rev=0);
Note: See TracChangeset
for help on using the changeset viewer.