Changes from tags/0.7 at r4289 to tags/0.7.1 at r4289
- Location:
- tags/0.7.1
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.7.1/NEWS
r4289 r4289 4 4 5 5 yat 0.7.x series from http://dev.thep.lu.se/yat/svn/branches/0.7-stable 6 7 version 0.7.1 (released 13 January 2011) 8 - Fixed compiler (gcc 3) error in Histogram.cc (issue #649) 9 - Fixed compiler warning in concept_check.h (issue #648) 10 11 A complete list of closed tickets can be found here [[br]] 12 http://dev.thep.lu.se/yat/query?status=closed&milestone=yat+0.7.1 13 6 14 7 15 version 0.7 (released 8 January 2011) -
tags/0.7.1/m4/version.m4
r4289 r4289 28 28 m4_define([MINOR_VERSION], [7]) 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 70 71 # 71 m4_define([YAT_LT_VERSION_INFO], [4: 0:0])72 m4_define([YAT_LT_VERSION_INFO], [4:1:0]) 72 73 73 74 ### -
tags/0.7.1/yat/statistics/Histogram.cc
r4289 r4289 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); -
tags/0.7.1/yat/utility/concept_check.h
r4289 r4289 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.