Changes from tags/0.6.1 at r4334 to tags/0.6.2 at r4334
- Location:
- tags/0.6.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.6.2/NEWS
r4334 r4334 4 4 5 5 yat 0.6.x series from http://dev.thep.lu.se/yat/svn/branches/0.6-stable 6 7 Version 0.6.2 (released 18 May 2010) 8 9 - fixed bug with merge when result is weighted (r2251) 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.6.2 6 13 7 14 Version 0.6.1 (released 14 March 2010) -
tags/0.6.2/m4/version.m4
r4334 r4334 28 28 m4_define([MINOR_VERSION], [6]) 29 29 # PATCH - Modify for every released patch 30 m4_define([PATCH_VERSION], [ 1])30 m4_define([PATCH_VERSION], [2]) 31 31 32 32 # DEV_BUILD - When rolling a tarball we set this to `false'. In … … 63 63 # yat-0.6.0 3:0:0 64 64 # yat-0.6.1 3:1:0 65 # yat-0.6.2 3:2:0 65 66 # 66 67 # *Accidently, the libtool number was not updated for yat 0.5 67 68 # 68 m4_define([YAT_LT_VERSION_INFO], [3: 1:0])69 m4_define([YAT_LT_VERSION_INFO], [3:2:0]) 69 70 70 71 ### -
tags/0.6.2/yat/utility/merge.h
r4334 r4334 5 5 6 6 /* 7 Copyright (C) 2009 Peter Johansson7 Copyright (C) 2009, 2010 Peter Johansson 8 8 9 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 187 187 template<typename Iterator, class Functor1, class Functor2> 188 188 void assign(DataWeight& x, Iterator first, Iterator last, Functor1 func1, 189 Functor2 func )189 Functor2 func2) 190 190 { 191 191 x.data() = func1(first, last);
Note: See TracChangeset
for help on using the changeset viewer.