Changeset 2411
- Timestamp:
- Jan 13, 2011, 3:39:02 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.7-stable merged: 2401-2403,2405,2407-2408
- Property svn:mergeinfo changed
-
trunk/NEWS
r2400 r2411 10 10 11 11 yat 0.7.x series from http://dev.thep.lu.se/yat/svn/branches/0.7-stable 12 13 version 0.7.1 (released 13 January 2011) 14 - Fixed compiler (gcc 3) error in Histogram.cc (issue #649) 15 - Fixed compiler warning in concept_check.h (issue #648) 16 17 A complete list of closed tickets can be found here [[br]] 18 http://dev.thep.lu.se/yat/query?status=closed&milestone=yat+0.7.1 19 12 20 13 21 version 0.7 (released 8 January 2011) -
trunk/m4/version.m4
r2400 r2411 28 28 m4_define([MINOR_VERSION], [8]) 29 29 # PATCH - Modify for every released patch 30 m4_define([PATCH_VERSION], [ 0])30 m4_define([PATCH_VERSION], [1]) 31 31 32 32 # DEV_BUILD - When rolling a tarball we set this to `false'. In … … 66 66 # yat-0.6.3 3:3:0 67 67 # yat-0.7.0 4:0:0 68 # yat-0.7.1 4:1:0 68 69 # 69 70 # *Accidently, the libtool number was not updated for yat 0.5 -
trunk/yat/statistics/Histogram.cc
r2384 r2411 6 6 Copyright (C) 2006 Jari Häkkinen 7 7 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2009, 2010 Peter Johansson8 Copyright (C) 2009, 2010, 2011 Peter Johansson 9 9 10 10 This file is part of the yat library, http://dev.thep.lu.se/yat … … 66 66 getline(is, line, '\n'); 67 67 std::vector<std::vector<double> > data; 68 utility::load(is, data );68 utility::load(is, data, '\0', '\n'); 69 69 for (size_t i=0; i<histogram_.size(); ++i) { 70 70 assert(data[i].size()==2); -
trunk/yat/utility/concept_check.h
r2340 r2411 5 5 6 6 /* 7 Copyright (C) 2010 Peter Johansson7 Copyright (C) 2010, 2011 Peter Johansson 8 8 9 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 54 54 { 55 55 public: 56 /// Default constructor 57 Container2D(void) {} 58 56 59 /// value_type 57 60 typedef typename T::value_type value_type;
Note: See TracChangeset
for help on using the changeset viewer.