Dmitry Arkhipov
efded1d062
remove duplicate line in reference
2023-10-26 21:27:05 +03:00
Dmitry Arkhipov
b2fa868bbe
make memory resource classes VISIBLE
2023-10-26 20:54:45 +03:00
Dmitry Arkhipov
aa14b592fe
remove unused macros
2023-10-26 20:49:23 +03:00
Dmitry Arkhipov
3d17afc229
increase testing of CMake build files
2023-10-26 09:14:52 +03:00
Dmitry Arkhipov
a0fbf1d906
fix msvc build of tests
2023-10-25 11:29:13 +03:00
Dmitry Arkhipov
e19eddeaee
parse_into clears strings before filling them
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
75981e701e
parse_into clears sequences before filling them
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
f144f382d8
document direct parsing
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
34284c3e53
avoid unnecessary allocations for strings
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
60bf3455c2
remove unnecessary parameters
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
a3821cea69
increase parse_into coverage
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
f5b9709666
add struct member count checking for parse_into
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
c1b7174780
add array size checking for parse_into
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
aaa4e7f58a
add tuple size checking for parse_into
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
4f4396e1f8
test parse_into error reporting
2023-10-09 16:59:39 +03:00
Peter Dimov
53b99c8e6b
Add example/parse_into_citm_catalog.cpp
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
9859866d08
parse_into supports std::array
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
10ef306f82
test/parse_into.cpp requires /bigobj on msvc
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
7b26a344be
parse_into supports variants
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
98b85ad1ab
parse_into tuple support works on C++11
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
b540696622
error_code is first argument for parse_into nested handlers' functions
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
9565c71dee
refactor parse_into tuple handler
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
8e6283af2f
internal docs for parse_into machinery
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
71a6521203
extend parse_into API, document it
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
7133184252
parse_into supports optionals
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
ef6e310141
parse_into supports described enums
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
56fcb09f2d
reusing existing conversion components
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
62af0a0c16
parse_into header cleanup
2023-10-09 16:59:39 +03:00
Peter Dimov
4c628ae36a
Add null_handler
2023-10-09 16:59:39 +03:00
Peter Dimov
76c234b877
Add example/parse_into_canada.cpp
2023-10-09 16:59:39 +03:00
Peter Dimov
7761788417
Add parse_into
2023-10-09 16:59:39 +03:00
Dmitry Arkhipov
5328819e63
make msvc-14.0 compile with exceptions disabled
2023-10-06 22:56:17 +03:00
Dmitry Arkhipov
07efc5e83b
better document building without exceptions
...
Also, a test for building without exceptions.
2023-10-06 22:56:17 +03:00
Dmitry Arkhipov
4a1350b16c
b2 target to copy benchmark runner to source dir
...
This can be useful for CI, because otherwise b2 put the runner program
in a directory that is not trivial to deduce.
2023-10-06 16:18:59 +03:00
Dmitry Arkhipov
00c630eb9a
b2 target to run benchmarks
2023-10-06 15:53:58 +03:00
Dmitry Arkhipov
66d9251167
more init-list value construction tests
2023-09-11 16:59:10 +03:00
Dmitry Arkhipov
a07e38be41
is_variant_like
2023-09-09 13:09:07 +03:00
Peter Dimov
557676b68c
Add a variant2 test to value_to.cpp, extracted from #925
2023-09-03 23:57:11 +03:00
Dmitry Arkhipov
25e740d7ba
fix inconsistent choice of init list constructor
...
On some compilers value{x} invokes initializer_list constructor, on
others it is equivalent to value(x). This is very problematic, but this
isn't something we can fix. On the other hand, we CAN make init list
construction to be equivalent to value(x), if the size of init list is
one. This commit does exactly that.
2023-08-25 20:27:46 +03:00
Dmitry Arkhipov
2acdb29a32
fix reading beyond input buffer
...
This fixes a rare case when the parser first suspends inside a comment,
then is given input exactly up to the newline character. Before the fix
it proceeded to read past the end of the buffer or hit an assert.
2023-08-25 19:50:20 +03:00
Dmitry Arkhipov
f48b6dd4b0
relax iterator requirements
2023-08-23 19:48:56 +03:00
Dmitry Arkhipov
ca2a1b5f80
is_optional_like
2023-08-23 19:46:33 +03:00
Matt Borland
0c1b4692f9
Replace _M_ARM64 with _M_ARM for 32 bit path
2023-08-16 08:06:45 -04:00
Matt Borland
c4ce8509d0
Fix use of intrinsics on windows ARM platforms
2023-08-11 09:21:10 -04:00
Dmitry Arkhipov
e084a2918c
1.83.0 release notes
boost-1.83.0
2023-07-26 15:50:09 +03:00
Dmitry Arkhipov
ed9e2f536a
require ARM64 for __umulh
2023-07-24 14:39:22 +03:00
Dmitry Arkhipov
b8ccd1499e
move number_precision to Constants in reference
2023-07-23 23:56:24 +03:00
Dmitry Arkhipov
ca04e885dc
rebalance columns in reference docs
2023-07-23 22:25:53 +03:00
Dmitry Arkhipov
0273148f69
replaced references to cppalliance/json with references to boostorg/json where appropriate
2023-07-17 17:53:33 +03:00
Dmitry Arkhipov
0a7860fcfc
conversion customization guidelines
boost-1.83.0.beta1
2023-07-03 17:59:17 +03:00