From e1c795c8734119985ea09bf4d9f860d11e440b2a Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 30 Jul 2012 14:36:24 -0400 Subject: [PATCH] Workaround for gcc bug. c.f. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44963 --- include/mdds/multi_type_vector_types.hpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/mdds/multi_type_vector_types.hpp b/include/mdds/multi_type_vector_types.hpp index 78f18cb..6189139 100644 --- a/include/mdds/multi_type_vector_types.hpp +++ misc/build/mdds_0.6.0/include/mdds/multi_type_vector_types.hpp @@ -218,7 +218,8 @@ public: typename store_type::const_iterator it_end = it; std::advance(it_end, len); d.reserve(d.size() + len); - std::copy(it, it_end, std::back_inserter(d)); + for (; it != it_end; ++it) + d.push_back(*it); } static void assign_values_from_block( -- 1.7.7 7-3'>distro/allotropia/zeta-7-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Expand)Author
2020-03-04Bump Windows build baseline to Visual Studio 2019 16.4Stephan Bergmann
2020-02-20Bump macOS build baseline to Xcode 11.3 and macOS 10.14.4Stephan Bergmann
2020-02-06Self-certify LibreOffice licenses as OSI-approvedThorsten Behrens
2019-11-01README: Add Weblate badge for core l10nAdolfo Jayme Barrientos
2019-10-28Android: document one SDK version that worksMiklos Vajna
2019-08-26Android: document one NDK version that worksMiklos Vajna
2019-08-15Fix MSVC version in README.mdStephan Bergmann
2019-06-05baseline is CentOS/RHEL 7 (glibc 2.14 or later)Christian Lohmaier
2018-12-06Bump (Linux) GCC baseline to 7.0.0Stephan Bergmann
2018-12-04Bump (Linux) Clang baseline to 5.0.2Stephan Bergmann
2018-11-28Xcode 9.3 reportedly requires at least macOS 10.13.2Stephan Bergmann
2018-11-27Bump minimum macOS run-time version to 10.10Tor Lillqvist
2018-11-23Bump Xcode baseline to 9.3Stephan Bergmann
2018-11-23Bump compiler plugins Clang baseline to 5.0.2Stephan Bergmann
2018-10-01Add loplugin:includeform documentationStephan Bergmann
2018-07-12Say VS2017 here, tooTor Lillqvist
2018-06-07Bump iOS SDK version to the current one, 11.4Tor Lillqvist
2018-04-01iOS, bump versionsjan Iversen
2018-02-11Updated links in readme files (https etc.)Ilmari Lauhakangas
2017-12-30iOS, bump version to 11.2jan Iversen
2017-12-19Bump --enable-compiler-plugins to Clang 3.8.0Stephan Bergmann
2017-12-19Document that Clang 3.4.2 is known to be too oldStephan Bergmann
2017-11-13iOS, update to version 11.1jan Iversen
2017-11-08README.md: markdown use 4 spaces for list indentationKorrawit Pruegsanusak
2017-11-03loplugin:includeform: document the requirementsMike Kaganski
2017-10-27iOS update to 11.0jan Iversen
2017-10-08iOS, update app to swift 4jan Iversen
2017-10-04iOS, updated README.mdjan Iversen
2017-10-03Update OSX SDK checkingNoel Grandin
2017-09-08Document baselinesJan-Marek Glogowski
2016-10-10README.md: Add CII Best Practices badgeAdolfo Jayme Barrientos
2016-01-20drop basebmp entirely nowCaolán McNamara
2015-11-28README: Describe what LibreOffice is aboutDavid Ostrovsky
2015-05-24README.md: Add a pretty Coverity badgeAdolfo Jayme Barrientos
2015-03-31README.md: framework is not a wrapper around sfx2Michael Stahl
2015-03-22README.Code → README.mdAdolfo Jayme Barrientos