Commit Graph

1262 Commits

Author SHA1 Message Date
Kohei Takahashi
cf33f3db4e Added copy assign to deque(03).
move ctor will delete defaulted copy assign.
2017-10-14 03:16:00 +09:00
Kohei Takahashi
dfe08dec2c Fixed incorrect overload resolution.
Those functions should not be chosen for copying/moving.
2017-10-14 02:34:44 +09:00
Kohei Takahashi
7ec3f1a68f Merge pull request #153 from boostorg/bugfix/array-and-libcxx
Fixed compile error with std::array
2017-10-13 22:12:02 +09:00
Kohei Takahashi
42a01fc3f4 Fixed compile error with std::array
libc++ enables std::array in c++98 mode, but <type_traits> doesn't.
2017-10-13 20:04:11 +09:00
Kohei Takahashi
0d37235d1c Merge pull request #152 from boostorg/ci
Enabe CI services
2017-10-13 17:03:50 +09:00
Kohei Takahashi
e97f58749f Reduce ln flags
BSD coreutils doesn't know -T switch.
2017-10-13 14:46:30 +09:00
Kohei Takahashi
80a86fbcd4 Move instead of link
bjam may confuse relative path.
2017-10-13 13:15:38 +09:00
Kohei Takahashi
6bef7c98b2 Fixed missing modules. 2017-10-13 13:12:08 +09:00
Kohei Takahashi
e4b1233262 Fixed directory hijacking error. 2017-10-13 12:46:54 +09:00
Kohei Takahashi
38535926bd Enabling CI services
based on smart_ptr repo
2017-10-13 12:30:17 +09:00
Kohei Takahashi
1bce525b30 Merge pull request #151 from boostorg/change-base-of-tuple
Change base of tuple
2017-10-12 23:56:23 +09:00
Kohei Takahashi
e606ceeff0 Improve vector value_at performance. 2017-10-07 14:18:29 +09:00
Kohei Takahashi
24d1c7fd1a Reduce type deduction which is already known. 2017-10-04 01:43:45 +09:00
Kohei Takahashi
e5d073d786 Use compiler generated ctor. 2017-10-04 01:30:27 +09:00
Kohei Takahashi
6a9b7f314d Remove unnecessary base check.
fusion::tuple doesn't inherit from fusion::vector now.
2017-10-04 01:13:26 +09:00
Kohei Takahashi
0471a65ca2 Change fusion::tuple its base class to vector_data.
This change aims to improve compile time performance for both of vector and tuple.
2017-10-03 22:25:03 +09:00
Joel de Guzman
b6e5285430 Merge pull request #150 from gjasny/remove-circular-include
Remove circular preprocessor include
2017-09-03 05:30:35 +08:00
Gregor Jasny
9cb23af898 Remove circular preprocessor include 2017-09-02 16:09:12 +02:00
Joel de Guzman
437cea006a Merge pull request #149 from kuhlenough/develop
isspace(c) is not a macro in Dinkum clib for VxWorks
2017-08-11 04:42:26 +08:00
Brian Kuhl
7c15df79f2 isspace(c) is not a macro in Dinkum clib for VxWorks, must be in std namespace 2017-08-10 12:19:32 -04:00
Joel de Guzman
503a89dc89 Merge pull request #148 from vtnerd/bugfix/test_nest
Fixed bug in test/sequence/nest.hpp where some results were ignored
2017-07-26 08:01:19 +08: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
36eac2e77c Added missing include file. 2017-06-18 23:12:50 +09:00
Kohei Takahashi
bb782de1ff Merge pull request #146 from Flast/update-workarounds
Update workarounds for msvc 14.1
2017-05-01 13:12:56 +09:00
Kohei Takahashi
451e21adb3 Update workarounds for msvc 14.1 2017-04-30 23:26:24 +09:00
Kohei Takahashi
e0ceefafb6 Merge pull request #145 from boostorg/test-config
Refresh Jamfile
2017-04-30 22:41:34 +09: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
f1a619428a Remove unintended file. 2016-11-20 16:41:23 +09:00
Kohei Takahashi
fcdcfcd2c5 Merge pull request #143 from boostorg/bugfix/returing-tmp-variable
Fix returing temporary variable warning on MSVC.
2016-11-01 02:44:58 +09:00
Kohei Takahashi
6f43cd7f66 Correct testcase condition. 2016-11-01 02:28:45 +09:00
Kohei Takahashi
c630611626 Fix returing temporary variable warning on MSVC. 2016-11-01 01:54:10 +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
ea9a176312 Include <array> instead of declare std::array.
Some implementations declare it as std::tr1::array and conflict.
2016-10-31 01:13:36 +09:00
Kohei Takahashi
1747703b1a Merge pull request #140 from Flast/bugfix/define_struct
Workarounds for older compilers.
2016-10-29 22:28:34 +09:00
Kohei Takahashi
c158886591 Workaround for MSVC 12 variadics bug. 2016-10-29 21:29:26 +09:00
Kohei Takahashi
5135b5109b Likewise. 2016-10-29 20:57:06 +09:00
Kohei Takahashi
490baac6e2 Added workaround for older gcc. 2016-10-29 15:34:49 +09:00
Kohei Takahashi
6bd644d43d Don't use iterator for copy/move assign op. 2016-10-29 14:40:47 +09:00
Kohei Takahashi
64af83d999 Merge pull request #138 from Flast/movable-define_struct
DEFINE_STRUCT now allows move construct/assign.
2016-10-24 00:00:06 +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
ef2dc2aaae Merge pull request #137 from boostorg/empty_struct
Allow to define empty struct.
2016-10-14 11:44:55 +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
Rene Rivera
599b8d4aef Add, and update, documentation build targets. 2016-10-07 23:07:34 -05:00