Damien Buhl (alias daminetreg)
02b776360a
FEATURE: BOOST_FUSION_ADAPT_STRUCT can now also be called completely with
...
variadics arguments.
The following signature is possible :
BOOST_FUSION_ADAPT_STRUCT(
struct_name,
member_name0,
(BOOST_FUSION_ADAPT_AUTO, member_name1)
(member_type2, member_name2)
member_name3,
...
)
2014-06-13 23:09:38 +02:00
Damien Buhl (alias daminetreg)
37fc1443ad
Improve the BOOST_FUSION_ADAPT_STRUCT macro to work also when there is no variadic support.
...
This enable the following flexible macro signature when there is
no BOOST_PP_VARIADICS support:
BOOST_FUSION_ADAPT_STRUCT(
struct_name,
(member_type0, member_name0)
(BOOST_FUSION_ADAPT_AUTO, member_name1)
(,member_name2)
...
)
If BOOST_PP_VARIADICS is active then there is quite more flexibility as it
allows to avoid the type specification:
BOOST_FUSION_ADAPT_STRUCT(
struct_name,
(member_type0, member_name0)
(BOOST_FUSION_ADAPT_AUTO, member_name1)
(,member_name2)
(member_name3)
...
)
2014-06-13 23:09:29 +02:00
Damien Buhl (alias daminetreg)
944c363787
Remove dependency to variadics macros for the old API not deducing types.
2014-06-13 23:07:49 +02:00
Damien Buhl (alias daminetreg)
6f6bfb3a27
EDITORIAL: Cleaning the ADAPT_STRUCT which can deduce types.
2014-06-13 23:07:32 +02:00
Damien Buhl (alias daminetreg)
04cbf0d4c6
BUGFIX: Presents the correct field name as a string even if type is deduced.
2014-06-13 23:07:32 +02:00
Damien Buhl (alias daminetreg)
703bff4ff9
FEATURE: Types of a struct can freely pe provided or deduced, following the user preferences.
2014-06-13 23:07:32 +02:00
Damien Buhl (alias daminetreg)
7e1c6cdf47
FEATURE: Type deduction for BOOST_FUSION_ADAPT_STRUCT_C_BASE, with preliminary support for providing or deducing the type.
2014-06-13 23:07:16 +02:00
Damien Buhl (alias daminetreg)
3ca94f5762
DOC: Add some comments to help me understand the adapt macros.
2014-06-13 23:04:09 +02:00
Damien Buhl (alias daminetreg)
c052b4b452
FEATURE: Making BOOST_FUSION_AUTO_ADAPT_STRUCT variadic.
2014-06-13 23:04:09 +02:00
Damien Buhl (alias daminetreg)
166132789a
DOC: Document the BOOST_FUSION_AUTO* macros.
...
This documents the AUTO_ADAPT macros :
* BOOST_FUSION_AUTO_ADAPT_STRUCT
* BOOST_FUSION_AUTO_ADAPT_STRUCT_NAMED
* BOOST_FUSION_AUTO_ADAPT_ASSOC_STRUCT
* BOOST_FUSION_AUTO_ADAPT_ASSOC_STRUCT_NAMED
2014-06-13 23:04:09 +02:00
Damien Buhl (alias daminetreg)
435fb5c29f
EDITORIAL: Reorganize imports.
2014-06-13 23:04:09 +02:00
Damien Buhl (alias daminetreg)
934463c7b4
FEATURE: BOOST_FUSION_AUTO_ADAPT_ASSOC_STRUCT_NAMED now allows defining a Random Access Sequence and an Associative sequence without providing the type.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
a5f87696f2
EDITORIAL: Rename the macro for type deduction to a more expressive and correct name.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
2d37b9c22c
EDITORIAL: Fixes typos.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
f7b14aee35
FEATURE: BOOST_FUSION_AUTO_ADAPT_ASSOC_STRUCT now allows defining a Random Access Sequence and an Associative sequence without providing the type.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
8a132ea44a
BUGFIX: Fix include path.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
5ffab5001e
REFACTORING: reused the BOOST_FUSION_AUTO_ADAPT_STRUCT_NAMED_NS macro in BOOST_FUSION_AUTO_ADAPT_STRUCT_NAMED to mimic the non-AUTO versions.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
e58bd91f27
EDITORIAL: fixed indentation.
2014-06-13 23:04:08 +02:00
Damien Buhl (alias daminetreg)
5aa9a89fb8
FEATURE: BOOST_FUSION_AUTO_ADAPT_STRUCT_NAMED_NS which allows listing class attributes to adapt without specifying types.
2014-06-13 23:04:07 +02:00
Damien Buhl (alias daminetreg)
0d7ad9f6e2
FEATURE: BOOST_FUSION_AUTO_ADAPT_STRUCT_NAMED that does not require specifying the types of the fields.
2014-06-13 23:04:07 +02:00
Damien Buhl (alias daminetreg)
946957d3dc
EDITORIAL: Change parameter names for consistency.
2014-06-13 23:04:07 +02:00
Damien Buhl (alias daminetreg)
3f965e00d3
#9516 BOOST_FUSION_AUTO_ADAPT_STRUCT that does not require specifying the types of the fields.
2014-06-13 23:04:07 +02:00
Joel de Guzman
a0c1ec2018
Merge branch 'develop'
boost-1.56.0
2014-05-27 08:45:08 +08:00
Joel de Guzman
1fde7cc293
Merge branch 'origin/develop'
2014-05-01 13:46:22 +08:00
Joel de Guzman
74a5d8804c
reverting support for ref pending review
2014-05-01 13:44:45 +08:00
Joel de Guzman
8e4dd16b2d
Merge pull request #5 from ericniebler/nil-hpp
...
Move definition of struct nil_ into its own header
2014-04-24 08:55:17 +08:00
Eric Niebler
d2633616dc
fix copyright
2014-04-23 16:50:58 -07:00
Eric Niebler
01ed85e0e5
put struct nil_ in its own header to fix incomplete type error with nvcc
2014-04-23 16:47:03 -07:00
Joel de Guzman
6c904779af
fixes #5208
2014-04-09 10:03:23 +08:00
Joel de Guzman
41e18be5cf
Merge pull request #4 from jamboree/develop
...
flatten/flatten_view/ref
2014-04-04 14:50:25 +08:00
Jamboree
fd3a18ce1a
flatten/flatten_view/ref
2014-04-04 14:38:38 +08:00
Joel de Guzman
21a2621cce
Merge branch 'origin/develop'
2014-03-18 23:44:59 +08:00
Joel de Guzman
efad85a925
fixes Ticket #9455
2014-03-18 23:43:23 +08:00
Joel de Guzman
ad90e29cd6
Merge branch 'origin/develop'
2014-03-17 11:04:37 +08:00
Joel de Guzman
a9ed19e3b8
Merge pull request #2 from ericniebler/gpu-enabled-2
...
Add function annotations necessary to run Fusion on GPUs
2014-01-28 15:04:23 -08:00
Eric Niebler
26b28eff93
Merge remote-tracking branch 'upstream/develop' into gpu-enabled-2
2014-01-28 14:35:41 -08:00
Eric Niebler
e113b31fdd
final gpu-enabling tweaks
2014-01-28 14:32:03 -08:00
K-ballo
44d5dca98b
Fixed test to work with an explicit operator bool
2014-01-26 19:06:16 -06:00
Eric Niebler
c04e912866
gpu-enable vector assign
2014-01-23 21:48:52 -08:00
Eric Niebler
125a8b5957
Merge remote-tracking branch 'upstream/develop' into gpu-enabled-2
2014-01-23 21:30:44 -08:00
Eric Niebler
e5b0f3c2e1
gpu-enable more functions, but not stream inserters and extractors
2014-01-23 21:30:18 -08:00
K-ballo
4b139914b1
Fixed issue with vectorN calling the wrong vector_dataN constructor
2014-01-23 08:31:50 -06:00
Eric Niebler
c4f9f0d1b6
gpu-enable functions
2014-01-22 23:55:53 -08:00
Joel de Guzman
aa78028662
Updated changelog
...
removed unmaintained todo.txt
[SVN r80347]
2014-01-22 22:26:56 -08:00
Joel de Guzman
ec5f8dc5ec
Merge branch 'origin/master'
...
Conflicts:
doc/html/index.html
include/boost/fusion/container/map/map_fwd.hpp
2014-01-23 01:08:13 +08:00
Joel de Guzman
867c7e5dfb
Merge pull request #1 from ericniebler/preprocess
...
build target for preprocessing Fusion with wave
2014-01-21 15:12:28 -08:00
Eric Niebler
e1dc534877
build target for preprocessing Fusion with wave
2014-01-21 14:17:09 -08:00
Michel Morin
14580550cf
Merge r86524 (Correct broken links to C++ standard papers); fixes #9212
...
[SVN r86673]
2013-11-13 03:22:55 +00:00
Michel Morin
f2e7a184a0
Correct broken links to C++ standard papers. Refs #9212 .
...
[SVN r86524]
2013-10-30 12:51:24 +00:00
Joel de Guzman
93447d3382
Merged 84441 to release
...
[SVN r86251]
2013-10-12 01:35:27 +00:00