From b42314fb02a4d064a15ff268a4b6cf0eb5c7db7a Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 10:10:15 +0900 Subject: [PATCH 1/7] Enabling parallel option to CI job --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7d0baaa7..7ba31114 100644 --- a/.travis.yml +++ b/.travis.yml @@ -201,4 +201,4 @@ install: - ./b2 headers script: - - ./b2 libs/fusion/test toolset=$TOOLSET cxxstd=$CXXSTD define=RUNNING_ON_TRAVIS=1 + - ./b2 -j`(nproc || sysctl -n hw.ncpu) 2> /dev/null` libs/fusion/test toolset=$TOOLSET cxxstd=$CXXSTD define=RUNNING_ON_TRAVIS=1 diff --git a/appveyor.yml b/appveyor.yml index efccd5f4..d671946a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,4 +71,4 @@ install: build: off test_script: - - b2 libs/fusion/test toolset=%TOOLSET% define=RUNNING_ON_APPVEYOR=1 + - b2 -j%NUMBER_OF_PROCESSORS% libs/fusion/test toolset=%TOOLSET% define=RUNNING_ON_APPVEYOR=1 From d8e6f406abc1bdb52b02e3bffaae9af7d1c4a7fa Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 10:15:39 +0900 Subject: [PATCH 2/7] Mark as CI in Jamfile not command line super-project also runs regression test, but they doesn't define that. --- .travis.yml | 2 +- appveyor.yml | 2 +- test/Jamfile | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ba31114..960235c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -201,4 +201,4 @@ install: - ./b2 headers script: - - ./b2 -j`(nproc || sysctl -n hw.ncpu) 2> /dev/null` libs/fusion/test toolset=$TOOLSET cxxstd=$CXXSTD define=RUNNING_ON_TRAVIS=1 + - ./b2 -j`(nproc || sysctl -n hw.ncpu) 2> /dev/null` libs/fusion/test toolset=$TOOLSET cxxstd=$CXXSTD diff --git a/appveyor.yml b/appveyor.yml index d671946a..300faa15 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,4 +71,4 @@ install: build: off test_script: - - b2 -j%NUMBER_OF_PROCESSORS% libs/fusion/test toolset=%TOOLSET% define=RUNNING_ON_APPVEYOR=1 + - b2 -j%NUMBER_OF_PROCESSORS% libs/fusion/test toolset=%TOOLSET% diff --git a/test/Jamfile b/test/Jamfile index c9b87da4..c02bb414 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -9,10 +9,19 @@ #============================================================================== # bring in rules for testing import testing ; +import os ; import ../../config/checks/config : requires ; +if [ os.environ CI ] +{ + CI_DEFINES = CI_SKIP_KNOWN_FAILURE=1 ; + CI_DEFINES += RUNNING_ON_TRAVIS=1 ; # for backward compatibility + CI_DEFINES += RUNNING_ON_APPVEYOR=1 ; # for backward compatibility +} + project : requirements + $(CI_DEFINES) ; { From 2c86e9d18c6590aa2cc6782eccdae1a22c77f0e3 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 10:17:06 +0900 Subject: [PATCH 3/7] Added hash option to b2 to mitigate max path length exceeding. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 300faa15..6f9e9c86 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -71,4 +71,4 @@ install: build: off test_script: - - b2 -j%NUMBER_OF_PROCESSORS% libs/fusion/test toolset=%TOOLSET% + - b2 -j%NUMBER_OF_PROCESSORS% --hash libs/fusion/test toolset=%TOOLSET% From dfceaffc5834b6ff9e211c7a2535709ea55d0bcc Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 10:30:55 +0900 Subject: [PATCH 4/7] Update copyright year --- .travis.yml | 2 +- appveyor.yml | 2 +- test/Jamfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 960235c0..e9e9df75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ # Copyright 2016, 2017 Peter Dimov -# Copyright 2017 Kohei Takahashi +# Copyright 2017-2018 Kohei Takahashi # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) diff --git a/appveyor.yml b/appveyor.yml index 6f9e9c86..b54741dc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ # Copyright 2016, 2017 Peter Dimov -# Copyright 2017 Kohei Takahashi +# Copyright 2017-2018 Kohei Takahashi # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) diff --git a/test/Jamfile b/test/Jamfile index c02bb414..0fbabce1 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -1,7 +1,7 @@ ##============================================================================== # Copyright (c) 2003-2006 Joel de Guzman # Copyright (c) 2013 Mateusz Loskot -# Copyright (c) 2014-2017 Kohei Takahashi +# Copyright (c) 2014-2018 Kohei Takahashi # # Use, modification and distribution is subject to the Boost Software # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at From 671f22b01319de67012b65c39279a718db635853 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 10:34:33 +0900 Subject: [PATCH 5/7] Use new common CI marker --- test/Jamfile | 2 -- test/sequence/define_struct_inline_move.cpp | 6 +++--- test/sequence/define_tpl_struct_inline_move.cpp | 6 +++--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 0fbabce1..d93668c0 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -15,8 +15,6 @@ import ../../config/checks/config : requires ; if [ os.environ CI ] { CI_DEFINES = CI_SKIP_KNOWN_FAILURE=1 ; - CI_DEFINES += RUNNING_ON_TRAVIS=1 ; # for backward compatibility - CI_DEFINES += RUNNING_ON_APPVEYOR=1 ; # for backward compatibility } project diff --git a/test/sequence/define_struct_inline_move.cpp b/test/sequence/define_struct_inline_move.cpp index 6cf2d053..1650fae6 100644 --- a/test/sequence/define_struct_inline_move.cpp +++ b/test/sequence/define_struct_inline_move.cpp @@ -1,5 +1,5 @@ /*============================================================================= - Copyright (c) 2016 Kohei Takahashi + Copyright (c) 2016-2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -52,7 +52,7 @@ int main() } // Older MSVCs don't generate move ctor by default. -#if !(defined(RUNNING_ON_APPVEYOR) && BOOST_WORKAROUND(BOOST_MSVC, < 1900)) +#if !(defined(CI_SKIP_KNOWN_FAILURE) && BOOST_WORKAROUND(BOOST_MSVC, < 1900)) { ns::value x; ns::value y(std::move(x)); // move @@ -70,7 +70,7 @@ int main() BOOST_TEST(x.w.value == 0); BOOST_TEST(y.w.value == 0); } -#endif // !(appveyor && msvc < 14.0) +#endif // !(ci && msvc < 14.0) return boost::report_errors(); } diff --git a/test/sequence/define_tpl_struct_inline_move.cpp b/test/sequence/define_tpl_struct_inline_move.cpp index 27be0573..3843ca16 100644 --- a/test/sequence/define_tpl_struct_inline_move.cpp +++ b/test/sequence/define_tpl_struct_inline_move.cpp @@ -1,5 +1,5 @@ /*============================================================================= - Copyright (c) 2016 Kohei Takahashi + Copyright (c) 2016-2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -52,7 +52,7 @@ int main() } // Older MSVCs don't generate move ctor by default. -#if !(defined(RUNNING_ON_APPVEYOR) && BOOST_WORKAROUND(BOOST_MSVC, < 1900)) +#if !(defined(CI_SKIP_KNOWN_FAILURE) && BOOST_WORKAROUND(BOOST_MSVC, < 1900)) { ns::value x; ns::value y(std::move(x)); // move @@ -70,7 +70,7 @@ int main() BOOST_TEST(x.w.value == 0); BOOST_TEST(y.w.value == 0); } -#endif // !(appveyor && msvc < 14.0) +#endif // !(ci && msvc < 14.0) return boost::report_errors(); } From 540ea0ef0c81e1c2939c4c9c23353bad0feaf4a5 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 12:03:19 +0900 Subject: [PATCH 6/7] Use build time configuration --- test/Jamfile | 36 ++++++++++++------- test/algorithm/move.cpp | 15 +------- test/sequence/define_assoc_struct_move.cpp | 13 +------ test/sequence/define_struct_inline_move.cpp | 11 ------ test/sequence/define_struct_move.cpp | 13 +------ .../define_tpl_struct_inline_move.cpp | 11 ------ test/sequence/define_tpl_struct_move.cpp | 13 +------ test/sequence/deque_move.cpp | 16 ++------- test/sequence/map_move.cpp | 15 ++------ test/sequence/vector_move.cpp | 15 ++------ test/support/and.cpp | 7 ++-- test/support/index_sequence.cpp | 8 ++--- 12 files changed, 42 insertions(+), 131 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index d93668c0..82d715bb 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -42,7 +42,8 @@ project [ run algorithm/insert.cpp ] [ run algorithm/insert_range.cpp ] [ run algorithm/iter_fold.cpp ] - [ run algorithm/move.cpp ] + [ run algorithm/move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run algorithm/none.cpp ] [ run algorithm/pop_back.cpp ] [ run algorithm/pop_front.cpp ] @@ -106,7 +107,8 @@ project [ compile sequence/deque_is_constructible.cpp ] [ run sequence/deque_make.cpp ] [ run sequence/deque_misc.cpp ] - [ run sequence/deque_move.cpp ] + [ run sequence/deque_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/deque_mutate.cpp ] [ run sequence/deque_nest.cpp ] [ run sequence/deque_tie.cpp ] @@ -120,7 +122,8 @@ project [ run sequence/map_construction.cpp ] [ run sequence/map_copy.cpp ] [ run sequence/map_misc.cpp ] - [ run sequence/map_move.cpp ] + [ run sequence/map_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/map_mutate.cpp ] [ run sequence/map_tie.cpp ] [ run sequence/nil.cpp ] @@ -159,7 +162,8 @@ project [ run sequence/vector_iterator.cpp ] [ run sequence/vector_make.cpp ] [ run sequence/vector_misc.cpp ] - [ run sequence/vector_move.cpp ] + [ run sequence/vector_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/vector_mutate.cpp ] [ run sequence/vector_n.cpp ] [ run sequence/vector_nest.cpp ] @@ -204,22 +208,28 @@ project [ run sequence/adt_attribute_proxy.cpp ] [ run sequence/define_struct.cpp ] [ run sequence/define_struct_empty.cpp ] - [ run sequence/define_struct_move.cpp ] + [ run sequence/define_struct_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/define_struct_inline.cpp ] [ run sequence/define_struct_inline_empty.cpp ] - [ run sequence/define_struct_inline_move.cpp ] + [ run sequence/define_struct_inline_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/define_assoc_struct.cpp ] [ run sequence/define_assoc_struct_empty.cpp ] - [ run sequence/define_assoc_struct_move.cpp ] + [ run sequence/define_assoc_struct_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/define_tpl_struct.cpp ] [ run sequence/define_tpl_struct_empty.cpp ] - [ run sequence/define_tpl_struct_move.cpp ] + [ run sequence/define_tpl_struct_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/define_tpl_struct_inline.cpp ] [ run sequence/define_tpl_struct_inline_empty.cpp ] - [ run sequence/define_tpl_struct_inline_move.cpp ] + [ run sequence/define_tpl_struct_inline_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/define_assoc_tpl_struct.cpp ] [ run sequence/define_assoc_tpl_struct_empty.cpp ] - [ run sequence/define_assoc_tpl_struct_move.cpp ] + [ run sequence/define_assoc_tpl_struct_move.cpp : : + : [ requires cxx11_rvalue_references ] ] [ run sequence/std_tuple.cpp : : : [ requires cxx11_variadic_templates cxx11_hdr_tuple ] ] [ run sequence/std_tuple_iterator.cpp : : @@ -250,8 +260,10 @@ project [ compile support/pair_set.cpp ] [ compile support/pair_vector.cpp ] [ compile support/pair_nest.cpp ] - [ compile support/index_sequence.cpp ] - [ compile support/and.cpp ] + [ compile support/index_sequence.cpp + : [ requires cxx11_variadic_templates ] ] + [ compile support/and.cpp + : [ requires cxx11_variadic_templates ] ] # [ compile-fail xxx.cpp ] diff --git a/test/algorithm/move.cpp b/test/algorithm/move.cpp index ac9ffed2..d2f85403 100644 --- a/test/algorithm/move.cpp +++ b/test/algorithm/move.cpp @@ -1,13 +1,9 @@ /*============================================================================= - Copyright (c) 2014 Kohei Takahashi + Copyright (c) 2014,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ -#include - -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - #include #include #include @@ -29,12 +25,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ - // no thing to do -} - -#endif - diff --git a/test/sequence/define_assoc_struct_move.cpp b/test/sequence/define_assoc_struct_move.cpp index 97c3d7ee..07def389 100644 --- a/test/sequence/define_assoc_struct_move.cpp +++ b/test/sequence/define_assoc_struct_move.cpp @@ -1,13 +1,9 @@ /*============================================================================= - Copyright (c) 2016 Kohei Takahashi + Copyright (c) 2016,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ - -#include -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES - #include #include #include @@ -69,10 +65,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ -} - -#endif diff --git a/test/sequence/define_struct_inline_move.cpp b/test/sequence/define_struct_inline_move.cpp index 1650fae6..951f7e4f 100644 --- a/test/sequence/define_struct_inline_move.cpp +++ b/test/sequence/define_struct_inline_move.cpp @@ -4,10 +4,6 @@ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ - -#include -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES - #include #include #include @@ -75,10 +71,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ -} - -#endif diff --git a/test/sequence/define_struct_move.cpp b/test/sequence/define_struct_move.cpp index 9f9036bb..8732b59b 100644 --- a/test/sequence/define_struct_move.cpp +++ b/test/sequence/define_struct_move.cpp @@ -1,13 +1,9 @@ /*============================================================================= - Copyright (c) 2016 Kohei Takahashi + Copyright (c) 2016,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ - -#include -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES - #include #include #include @@ -68,10 +64,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ -} - -#endif diff --git a/test/sequence/define_tpl_struct_inline_move.cpp b/test/sequence/define_tpl_struct_inline_move.cpp index 3843ca16..b95da6f6 100644 --- a/test/sequence/define_tpl_struct_inline_move.cpp +++ b/test/sequence/define_tpl_struct_inline_move.cpp @@ -4,10 +4,6 @@ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ - -#include -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES - #include #include #include @@ -75,10 +71,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ -} - -#endif diff --git a/test/sequence/define_tpl_struct_move.cpp b/test/sequence/define_tpl_struct_move.cpp index 127e5ce0..c4dd9ab6 100644 --- a/test/sequence/define_tpl_struct_move.cpp +++ b/test/sequence/define_tpl_struct_move.cpp @@ -1,13 +1,9 @@ /*============================================================================= - Copyright (c) 2016 Kohei Takahashi + Copyright (c) 2016,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ - -#include -#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES - #include #include #include @@ -68,10 +64,3 @@ int main() return boost::report_errors(); } -#else - -int main() -{ -} - -#endif diff --git a/test/sequence/deque_move.cpp b/test/sequence/deque_move.cpp index c1f126eb..b3675b24 100644 --- a/test/sequence/deque_move.cpp +++ b/test/sequence/deque_move.cpp @@ -1,16 +1,11 @@ /*============================================================================= Copyright (c) 2012 Joel de Guzman + Copyright (c) 2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES // $$$ JDG temp $$$ - - -#include - -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - #include #define FUSION_SEQUENCE boost::fusion::deque> @@ -18,16 +13,9 @@ #include "move.hpp" -#else -#include -#endif - -int -main() +int main() { -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) test(); -#endif return boost::report_errors(); } diff --git a/test/sequence/map_move.cpp b/test/sequence/map_move.cpp index 77154406..fcac58aa 100644 --- a/test/sequence/map_move.cpp +++ b/test/sequence/map_move.cpp @@ -1,15 +1,11 @@ /*============================================================================= Copyright (c) 2012 Joel de Guzman + Copyright (c) 2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES // $$$ JDG temp $$$ - -#include - -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - #include struct k1 {}; @@ -23,16 +19,9 @@ struct k2 {}; #include "move.hpp" -#else -#include -#endif - -int -main() +int main() { -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) test(); -#endif return boost::report_errors(); } diff --git a/test/sequence/vector_move.cpp b/test/sequence/vector_move.cpp index 3f96d72a..4e5ae7c8 100644 --- a/test/sequence/vector_move.cpp +++ b/test/sequence/vector_move.cpp @@ -1,15 +1,11 @@ /*============================================================================= Copyright (c) 2012 Joel de Guzman + Copyright (c) 2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #define BOOST_FUSION_DONT_USE_PREPROCESSED_FILES // $$$ JDG temp $$$ - -#include - -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - #include #define FUSION_SEQUENCE boost::fusion::vector> @@ -17,16 +13,9 @@ #include "move.hpp" -#else -#include -#endif - -int -main() +int main() { -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) test(); -#endif return boost::report_errors(); } diff --git a/test/support/and.cpp b/test/support/and.cpp index 99ecd9f4..b657ead5 100644 --- a/test/support/and.cpp +++ b/test/support/and.cpp @@ -1,12 +1,15 @@ /*============================================================================= Copyright (c) 2016 Lee Clagett + Copyright (c) 2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include -#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) +#ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES +# error "does not meet requirements" +#endif #include #include @@ -29,5 +32,3 @@ int main() { return boost::report_errors(); } -#endif - diff --git a/test/support/index_sequence.cpp b/test/support/index_sequence.cpp index f155a8c7..019ae474 100644 --- a/test/support/index_sequence.cpp +++ b/test/support/index_sequence.cpp @@ -1,12 +1,14 @@ /*============================================================================= - Copyright (c) 2015 Kohei Takahashi + Copyright (c) 2015,2018 Kohei Takahashi Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include -#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) +#ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES +# error "does not meet requirements" +#endif #include #include @@ -28,5 +30,3 @@ BOOST_MPL_ASSERT((boost::is_same::type, detail:: BOOST_MPL_ASSERT((boost::is_same::type, detail::index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15> >)); BOOST_MPL_ASSERT((boost::is_same::type, detail::index_sequence<0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16> >)); -#endif - From cdd1408d2bc0dc3da2f4cdccc98fc54f54cef4e0 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Mon, 29 Jan 2018 12:35:30 +0900 Subject: [PATCH 7/7] Update dependency functional/hash was branched off into contaienr_hash --- .travis.yml | 1 + appveyor.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e9e9df75..9db3bca0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -167,6 +167,7 @@ install: - git submodule init libs/bind - git submodule init libs/concept_check - git submodule init libs/config + - git submodule init libs/container_hash - git submodule init libs/conversion - git submodule init libs/core - git submodule init libs/detail diff --git a/appveyor.yml b/appveyor.yml index b54741dc..d75679ef 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,6 +39,7 @@ install: - git submodule init libs/bind - git submodule init libs/concept_check - git submodule init libs/config + - git submodule init libs/container_hash - git submodule init libs/conversion - git submodule init libs/core - git submodule init libs/detail