Commit Graph
282 Commits
Author SHA1 Message Date
Kohei Takahashi c1fe4e78ab algo: Added tests for mutable functor 2018-07-03 00:48:40 +09:00
Kohei Takahashi 0e4c5127f5 algo/for_each: Fixed parameter type
to be able to call mutable object
2018-07-02 22:19:25 +09:00
Kohei Takahashi d832387fdb Fixed misused parenthesized initializer 2018-05-13 18:59:43 +09:00
Kohei Takahashi 68be23a0b9 Merge upstream branch 'develop' into support 2018-04-27 20:32:09 +09:00
Kohei Takahashi 38aa3705d0 Added test for unused_type 2018-04-27 12:37:00 +09:00
Kohei Takahashi e8da43a539 Added workaround for gcc 4.6 with C array 2018-04-26 00:02:57 +09:00
Kohei Takahashi c4881f1862 Merge upstream branch 'develop' into more-ci-targets 2018-04-22 03:41:55 +09:00
Kohei Takahashi e818089a91 likewise 2018-04-21 19:18:09 +09:00
Kohei Takahashi a95a838779 Added workaround to test
is_constructible on GCC < 4.7 always fail to test non unary ctor
2018-04-21 18:22:24 +09:00
Kohei Takahashi 7443cb1101 Changed availability condition to what Boost.TT providing 2018-04-20 13:04:02 +09:00
Kohei Takahashi 757541f9d2 Updated c-style array test for associative container 2018-04-18 22:39:55 +09:00
Kohei Takahashi 96b2e51828 Added test for #176 2018-04-18 22:33:36 +09:00
Kohei Takahashi 4734cf4a13 Fixed detail::and test
it should be used mpl/assert instead of runtime facility.
2018-03-14 14:41:43 +09:00
Louis Dionne 82f677c169 Allow incomplete types in fusion::tag_of and fusion::is_native_fusion_sequence 2018-03-02 02:03:43 -08:00
Kohei Takahashi f61bffb21f Remove $$$ JDG temp $$$ 2018-02-24 16:00:57 +09:00
Kohei Takahashi eeeee9bfbb Fixed ambiguous call of hash_value
ADL also picks stdext::hash_value which msvc providing.
2018-02-19 22:40:56 +09:00
Kohei Takahashi d0c17119e7 CI: skip known to fail 2018-02-17 17:46:03 +09:00
Kohei Takahashi 540ea0ef0c Use build time configuration 2018-01-29 12:03:19 +09:00
Kohei Takahashi 671f22b013 Use new common CI marker 2018-01-29 10:34:33 +09:00
Kohei Takahashi dfceaffc58 Update copyright year 2018-01-29 10:30:55 +09:00
Kohei Takahashi d8e6f406ab Mark as CI in Jamfile not command line
super-project also runs regression test, but they doesn't define that.
2018-01-29 10:15:39 +09:00
Kohei Takahashi 5fd8c36079 Added test for GitHub issue #159 2017-11-23 22:27:59 +09:00
Kohei Takahashi e992658ce3 Skipping some tests due to compiler bug.
It is better to skip such tests on AppVeyor to detect regression.
2017-10-18 23:09:27 +09:00
Lee Clagett b24dfd635b Fixed bug in test/sequence/nest.hpp where some results were ignored 2017-07-25 15:29:57 -04:00
Kohei Takahashi 2952fd254f Use build time config to filter tests. 2017-04-27 22:23:39 +09:00
Kohei Takahashi 1ec001888d Reformatting. 2017-02-02 22:08:16 +09:00
Kohei Takahashi 98b81ee102 Remove use of deprecated binder. (#144) 2016-11-20 16:58:04 +09:00
Kohei Takahashi 6f43cd7f66 Correct testcase condition. 2016-11-01 02:28:45 +09:00
Kohei Takahashi 0d8243b36d Merge pull request #142 from Flast/std_array
Adaptor for std::array.
2016-10-31 01:40:57 +09:00
Kohei Takahashi e74ccb1cf5 DEFINE_STRUCT now allows move construct/assign. 2016-10-19 01:33:43 +09:00
Kohei Takahashi 7b13053c7e Merge pull request #135 from vtnerd/bugfix/vector_conversion_constructor
Make C++11 fusion::vector more consistent with C++03 fusion::vector
2016-10-14 13:51:52 +09:00
Kohei Takahashi ef1ca12e81 Added tests for adapted empty struct. 2016-10-14 01:47:02 +09:00
Kohei Takahashi a2b8a8f254 Don't define user-provided special functions.
To allow to define empty struct.
2016-10-13 00:18:14 +09:00
Kohei Takahashi 16a069be14 Fix test for non C++11/14. 2016-10-11 08:22:35 +09:00
Kohei Takahashi 61fab16418 Merge branch 'mloskot/boost_fusion_std_array' into develop 2016-10-10 18:46:29 +09:00
Kohei Takahashi 928ced256a Adjust directory structure. 2016-10-09 22:14:42 +09:00
Lee Clagett 5906d9c316 Make C++11 fusion::vector more consistent with C++03 fusion::vector
- Construct from elements is enabled iff each argument is_convertible to
    corresponding element.
  - Construct from sequence is enabled iff the single argument is a fusion
    sequence.
  - C++11 vector and tuple also disable construct from sequence that are
    shorter than the destination. C++03 gives incorrect is_convertible
    responses in this situation and fails to compile if that constructor is
    used; C++11 can have instantation errors in
    and_<is_convertible<U, T>...> without the additional check.
  - C++11 tuple and vector support truncation conversion and assignment like
    all other sequences.
2016-08-26 12:45:11 -04:00
Lee Clagett 55150a7fa6 Add DISABLE_VARIADIC_VECTOR and SFINAE for c++11 tuple element construction 2016-07-26 14:53:26 -04:00
Lee Clagett 79d8e9d11c Added to nested tests, and fixed C++11 vector copy-from-sequence 2016-05-31 16:52:57 -04:00
Kohei Takahashi 82f24e0f73 Tweak std::tuple test for GCC 4.4
due to https://gcc.gnu.org/PR41530 .
2016-03-11 01:01:12 +09:00
Joel de Guzman f7b90f2981 Merge pull request #124 from Flast/feature/ticket-11157-remove-BOOST_PP_IS_EMPTY
Remove use of BOOST_PP_IS_EMPTY.
2016-02-17 04:45:16 +08:00
Kohei Takahashi 4173b4b97b Suppress conversion warnings on MSVC. 2016-02-16 01:02:58 +09:00
Damien Buhl (alias daminetreg) 11cc331f82 Add test with namespaced names, as it could break with the macro concatenation to check for BOOST_MPL_PP_TOKEN_EQUAL_auto equality. 2016-02-13 14:15:53 +09:00
Damien Buhl (alias daminetreg) 2e466ac054 Remove BOOST_PP_IS_EMPTY in favor of BOOST_MPL_PP_TOKEN_EQUAL and added auto as synonym for BOOST_FUSION_ADAPT_AUTO.
Fix ticket https://svn.boost.org/trac/boost/ticket/11157
BOOST_MPL_PP_TOKEN_EQUAL is now used to check if auto/BOOST_FUSION_ADAPT_AUTO
was provided as type, telling to deduce members types.
2016-02-13 14:15:53 +09:00
Kohei Takahashi 981f71d04f Use boost::enable_if_has_type instead. 2015-11-01 11:10:11 +09:00
Joel de Guzman 1d45a87201 Merge pull request #102 from Flast/sfinae-friendly-fold
SFINAE-friendly fusion::fold
2015-10-16 06:32:12 +08:00
Kohei Takahashi cbd2e1dc1d Suppress unused warning. 2015-09-09 18:05:04 +09:00
Kohei Takahashi a6d1b303b3 Fix block comment style.
Intel Compiler warns on nested comment.
2015-09-09 13:35:03 +09:00
Kohei Takahashi 76b7697ba5 fusion::fold allows to take non-const lv-ref state properly. 2015-09-08 15:14:27 +09:00
Kohei Takahashi d3449ab5e5 Overhaul the fusion::fold family to make SFINAE-friendly. 2015-09-04 00:51:56 +09:00