Files
poly_collection/example/Jamfile.v2
joaquintides fcd9cebc92 Feature/variant_collection (#26)
* added variant_collection

* added variant_collection

* avoided &* on null pointers

* made (non-public) fixed_variant ctor explicit

* tested higher-arity visit

* implemented visit<void>

* fixed {boost::variant2|std}::variant insertion

* fixed lookup issues with invoke_visit

* removed unneeded constexpr qualifiers

* s/typeid_/index

* reverted c6bc62f6d2 as Clang 5.0 didnt seem to like it

* reinstated c6bc62f6d2

* dropped -std=c++1z for Clang 5.0

* updated docs and examples

* added boost::poly_collection::visit_by_index

* typo

* explicit cted tuple in make_iota_tuple

* changed function name to see if it helps with mangling-related Clang 3.8 ICE

* rewritten make_iota_tuple to try to make Clang 3.8 happier

* added boost::variant_collection_of
2024-12-28 10:56:06 +01:00

56 lines
949 B
Plaintext

# Copyright 2016-2024 Joaquín M López Muñoz.
# 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)
#
# See http://www.boost.org/libs/poly_collection for library home page.
project
: requirements
<library>/boost/poly_collection//boost_poly_collection
<cxxstd>11
;
exe algorithms
: algorithms.cpp
: <cxxstd>17
;
exe basic_any
: basic_any.cpp
;
exe basic_base
: basic_base.cpp
;
exe basic_function
: basic_function.cpp
: <cxxstd>14
;
exe basic_variant
: basic_variant.cpp
: <cxxstd>17
;
exe exceptions
: exceptions.cpp
;
exe insertion_emplacement
: insertion_emplacement.cpp
;
exe perf
: perf.cpp
/boost/ptr_container//boost_ptr_container
:
: release
;
exe segmented_structure
: segmented_structure.cpp
: <cxxstd>14
;