00823cc315
Merge pull request #84 from Flast/feature/variadic/list
...
Variadic fusion::list.
2015-07-01 08:35:47 +08:00
c0fcaae951
Prevent use of conversion ctor for copy purpose.
...
Some compilers elect conversion ctor for copy purpose in implicitly defined copy ctor with derived class.
2015-07-01 02:25:13 +09:00
6fe816fe89
Merge pull request #85 from Flast/feature/no_bounds_sequence
...
Feature/no bounds sequence
2015-06-25 23:09:18 +08:00
d29dc277e6
Renaming No-bounds concept to Unbounded concept.
2015-06-25 22:42:44 +09:00
d5ce74dffd
Added move ctor/assign for c++11 fusion::list.
2015-06-24 15:26:33 +09:00
a31009e73c
at_key and value_at_key are aware of no-bounds sequence.
2015-06-23 11:36:14 +09:00
1e21a4eb7a
Add new traits named has_no_bounds.
...
It is for special usecase: some thing like a window function.
This commit relative to c9ae4fc886
.
Users who wants to access out-of-bounds of sequence, specify new
category to it.
struct sequence {
struct category
: fusion::random_access_traversal_tag
, fusion::no_bounds_tag {};
...
};
All of bounds related intrinsics of the /no-bounds-sequence/ *should*
guarantee to be well-defined or SFINAE-friendly, or compile error.
2015-06-23 09:44:03 +09:00
5cceded23b
Drop unnecessary specialization.
2015-06-23 08:56:58 +09:00
78c5228d93
Move internal type into private.
2015-06-23 00:37:24 +09:00
0e8e857c2f
Fix fusion::make_list return type.
2015-06-22 23:43:49 +09:00
d197380540
Implement C++11 list_tie.
2015-06-22 23:08:55 +09:00
3d0412bfd1
constexpr support for variadic list.
2015-06-22 23:08:55 +09:00
275f65f9ad
Implement C++11 Variadic Templates based list.
2015-06-22 23:08:55 +09:00
2b14951660
Split c++14 like index_sequence into support/detail.
2015-06-22 21:58:54 +09:00
60cf66ad89
Adjust include path.
2015-06-18 08:26:11 +09:00
fb2e4c502f
Move list_tie.
2015-06-18 08:21:08 +09:00
ddcd3cdf93
Likewise.
2015-06-17 01:40:45 +09:00
78afb4d3fc
Likewise.
2015-06-14 23:05:06 +09:00
ff25066be2
Remove unnecessary include of mpl::print.
2015-06-08 13:36:49 +09:00
e0f10734b1
Fix issue 11267.
...
Compiler yields compile error within a function witch used in unevaluate
context of constexpr function because of CWG 1581 [2].
1. https://llvm.org/bugs/show_bug.cgi?id=23135
2. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1581
2015-06-08 11:53:17 +09:00
869513768d
Remove obsolete workaround.
...
now it doesn't work properly.
2015-05-23 09:51:06 +09:00
cac994a7c6
Stop Using type_traits details.
...
Best not to use type_traits undocumented details, these will be moving soon, and use of this header will warn loud and clear if you continue to use it.
2015-05-21 19:14:12 +01:00
8b1da45bfe
Fix 11269 ( https://svn.boost.org/trac/boost/ticket/11269 ) and add test case for it.
2015-05-06 08:21:02 +02:00
2445f60981
Fix #11249 : missing includes.
2015-05-05 14:09:20 +09:00
3c34d639df
Merge branch 'master' into develop
2015-04-29 16:20:05 +02:00
ce62bb49f3
fix constructors of DEFINE_STRUCT_INLINE to allow construction with non-constexpr compatible.
2015-04-26 22:19:44 +02:00
83fb0ef7a2
Merge branch 'master' into develop
2015-04-23 08:27:30 +08:00
bbdfc9972e
Remove BOOST_CONSTEXPR on BOOST_FUSION_DEFINE_STRUCT constructor as it however adds the requirement that the user provided types are constant enabled.
2015-04-21 08:59:24 +02:00
83a08934c8
Prepare to merge
2015-04-19 11:56:21 +09:00
6e569bcdc3
Fix workaround condition: || v.s. &&.
...
see: 01a2d6557e (commitcomment-10697799)
2015-04-14 13:39:50 +09:00
de50f65380
fixes #11161
2015-04-01 19:09:42 +08:00
1ba1ac3ec8
Merge pull request #66 from boostorg/develop
...
Last chance for 1.58.0.
2015-04-01 09:15:11 +08:00
b56eb59595
Merge pull request #65 from Flast/bugfix/msvc
...
Adjust LWG2408 workaround enabling condition.
2015-03-31 00:00:44 +08:00
01a2d6557e
Adjust LWG2408 workaround enabling condition.
2015-03-25 21:49:22 +09:00
67f0863cdd
Fix includes.
2015-03-22 12:24:18 +09:00
8c72a0012f
Merge remote-tracking branch 'origin/develop' into feature/sfinae-friendly-result_of
2015-03-09 10:45:42 +09:00
0954000314
After merge of #55 regenerated preprocessed headers as needed by #49 .
2015-03-06 14:51:52 +01:00
f45c94fa43
Merge remote-tracking branch 'origin/develop' into feature/constexpr
2015-03-04 02:20:52 +09:00
2114bfca6c
More constexpr and noexcept support.
...
Note 1: Forwarding functions are specified as a C++14 constexpr since
std::forward is not a constexpr within C++11.
Note 2: Though I'm not sure why it doesn't compile, some declarations
are specified as a C++14 constexpr or non-constexpr.
Note 3: Boost.Tuple adaptation and TR1-based tuple implementations are
not constexpr.
2015-03-03 02:21:02 +09:00
bd4b1cdac6
Fix #10443 : SFINAE-friendly result_of::invoke.
...
It means previous pull-requests (#24 ) is still incomplete.
2015-02-12 21:21:01 +09:00
e23d153734
Merge pull request #54 from boostorg/fusion_adapters
...
Type Deducing Fusion adapters into develop
2015-02-11 06:53:28 +08:00
505d41ea67
Merge pull request #49 from Flast/bugfix/msvc
...
Fix two major MSVC issues.
2015-02-09 06:53:57 +08:00
6ab68a29d8
Workaround for LWG 2408: SFINAE-friendly std::iterator_traits.
...
Now available for GCC(libstdc++v3) < 4.5 and MSVC 12.0.
It means, there is no ambiguous about calling next/prior/... via ADL.
2015-02-05 23:04:36 +09:00
73a5dde412
Merge remote-tracking branch 'official/develop' into fusion_adapters
...
Conflicts:
test/sequence/adapt_struct.cpp
2015-02-02 07:06:52 +01:00
c6c9d872d3
Factored out the IS_TPL macro.
2015-02-01 17:20:31 +01:00
fc1a60e8e6
Adding typename in front of BOOST_TYPEOF is only needed in MSVC when we check the type of a template.
2015-01-30 18:17:36 +01:00
de43345b34
BUGFIX: Forwarding template parameters for MSVC to deduced_attr_type context thanks to BOOST_FUSION_ADAPT_STRUCT_MSVC_REDEFINE_TEMPLATE_PARAMS.
2015-01-25 23:05:42 +01:00
382c1e5645
BUGFIX: Expands typename for attribute_type only in case it is really a dependent scope.
2015-01-25 21:48:49 +01:00
588896de45
Revert "BUGFIX: MSVC doesn't accept typename to specify a dependent scope within"
...
This reverts commit 98247fb97f
.
2015-01-25 16:14:45 +01:00
70d5b40a7c
BUGFIX: Expands typename for attribute_type only in case it is really a dependent scope.
2015-01-25 16:10:34 +01:00