Changes from tags/0.7.3 at r1608 to tags/0.7.4 at r1608
- Location:
- tags/0.7.4
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.7.4/NEWS
r1608 r1608 5 5 svndigest 0.7.x series from 6 6 http://dev.thep.lu.se/svndigest/svn/branches/0.7-stable 7 8 Version 0.7.4 (released 8 June 2010) 9 - fixed memory bug in StatsCollection (r1075) 10 11 A complete list of closed tickets can be found here [[br]] 12 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=0.7.4 7 13 8 14 Version 0.7.3 (released 15 February 2010) -
tags/0.7.4/bin/svndigest.cc
r1608 r1608 3 3 /* 4 4 Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2009 Peter Johansson5 Copyright (C) 2009, 2010 Peter Johansson 6 6 7 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 152 152 if (option->verbose()) 153 153 std::cout << "Parsing directory tree" << std::endl; 154 StatsCollection stats(tree->parse(option->verbose(), option->ignore_cache())); 154 const StatsCollection& stats(tree->parse(option->verbose(), 155 option->ignore_cache())); 155 156 156 157 if (option->report()) { -
tags/0.7.4/lib/StatsCollection.cc
r1608 r1608 4 4 Copyright (C) 2007 Peter Johansson 5 5 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 6 Copyright (C) 2009 Peter Johansson6 Copyright (C) 2009, 2010 Peter Johansson 7 7 8 8 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 51 51 StatsCollection::~StatsCollection(void) 52 52 { 53 for (map:: const_iterator i(stats_.begin()); i!=stats_.end(); ++i) {53 for (map::iterator i(stats_.begin()); i!=stats_.end(); ++i) { 54 54 assert(i->second); 55 55 delete i->second; 56 i->second = NULL; 56 57 } 57 58 58 } 59 59 -
tags/0.7.4/lib/StatsCollection.h
r1608 r1608 7 7 Copyright (C) 2007 Peter Johansson 8 8 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 9 Copyright (C) 2010 Peter Johansson 9 10 10 11 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 86 87 87 88 private: 89 // copy not allowed 90 StatsCollection(const StatsCollection&); 91 StatsCollection& operator=(const StatsCollection&); 92 88 93 const std::string path_; 89 94 typedef std::map<std::string, Stats*> map; -
tags/0.7.4/m4/version.m4
r1608 r1608 28 28 m4_define([MINOR_VERSION], [7]) 29 29 # PATCH - Modify for every released patch 30 m4_define([PATCH_VERSION], [ 3])30 m4_define([PATCH_VERSION], [4]) 31 31 32 32 # SVNDIGEST_DEV_BUILD - When rolling a tarball we set this to `false'. In
Note: See TracChangeset
for help on using the changeset viewer.