Changeset 639
- Timestamp:
- May 31, 2008, 3:58:26 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.h
r632 r639 43 43 inline bool force(void) const { return force_.value(); } 44 44 inline bool generate_config(void) const { return generate_config_.value(); } 45 inline bool ignore_cache(void) const { return ignore_cache_.value(); } 45 // Until we fix caching (#313) ignore caching 46 //inline bool ignore_cache(void) const { return ignore_cache_.value(); } 47 inline bool ignore_cache(void) const { return true; } 46 48 inline bool report(void) const { return report_.value(); } 47 49 inline bool revisions(void) const { return revisions_.value(); } -
trunk/lib/Stats.cc
r637 r639 57 57 revision_=svn_info.rev(); 58 58 last_changed_rev_=svn_info.last_changed_rev(); 59 reset(); 59 60 } 60 61 … … 340 341 calc_total(); 341 342 calc_all(); 343 assert(total_stats().size()); 344 assert(code_stats().size()); 345 assert(comment_or_copy_stats().size()); 346 assert(other_stats().size()); 342 347 } 343 348 … … 345 350 const std::string& linetype) const 346 351 { 352 assert(total_stats().size()); 347 353 plot_init(filename); 348 354 GnuplotFE* gp=GnuplotFE::instance(); … … 504 510 for (size_t i=0; i<stats_.size(); ++i){ 505 511 stats_[i].clear(); 512 stats_[i]["all"]=std::vector<unsigned int>(revision_+1); 506 513 } 507 514 authors_.clear();
Note: See TracChangeset
for help on using the changeset viewer.