1 From e1c795c8734119985ea09bf4d9f860d11e440b2a Mon Sep 17 00:00:00 2001
2 From: Kohei Yoshida <kohei.yoshida@gmail.com>
3 Date: Mon, 30 Jul 2012 14:36:24 -0400
4 Subject: [PATCH] Workaround for gcc bug.
6 c.f. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44963
8 include/mdds/multi_type_vector_types.hpp | 3 ++-
9 1 files changed, 2 insertions(+), 1 deletions(-)
11 diff --git a/include/mdds/multi_type_vector_types.hpp b/include/mdds/multi_type_vector_types.hpp
12 index 78f18cb..6189139 100644
13 --- a/include/mdds/multi_type_vector_types.hpp
14 +++ misc/build/mdds_0.6.1/include/mdds/multi_type_vector_types.hpp
15 @@ -218,7 +218,8 @@ public:
16 typename store_type::const_iterator it_end = it;
17 std::advance(it_end, len);
18 d.reserve(d.size() + len);
19 - std::copy(it, it_end, std::back_inserter(d));
20 + for (; it != it_end; ++it)
24 static void assign_values_from_block(