ToruNiina
0dc51f95d9
fix: disallow trailing comma in an inline table
2021-06-27 18:54:28 +09:00
ToruNiina
cf9e86a84f
fix: disallow control characters
...
in basic/literal string and comment
2021-06-27 18:53:48 +09:00
ToruNiina
5190e5148b
ci: update go version to 1.16
2021-06-27 16:32:49 +09:00
ToruNiina
45bd566f7a
fix: serialization of array containing a table
...
table in a (hetero-) array should be force-inlined
2021-06-27 16:28:41 +09:00
ToruNiina
2c72329530
ci: remove needless flag and allow hetero array
...
the example of hetero array (that was not allowed in v0.5.0 but allowed
in v1.0.0-rc1) has been moved from invalid/ to valid/
2021-06-27 16:12:01 +09:00
ToruNiina
1b7ca8566b
fix: out_of_range with malformed toml file #164
2021-06-27 15:58:40 +09:00
ToruNiina
647381020e
chore: update version number
2021-05-27 10:14:29 +09:00
ToruNiina
f04cf596eb
doc: update README
2021-05-26 23:16:03 +09:00
Toru Niina
c281539b26
Merge pull request #161 from cubiest/bugfix/empty_files_missing_filename_in_error
...
Preserve empty location for empty files
2021-05-26 12:28:38 +09:00
Oliver Kahrmann
58542d36be
Preserve empty location for empty files
...
Without a region, error messages in exceptions are unable to print
a filename.
By retaining the location in a zero-length region and detecting this
when formatting the exception text it is possible to print the filename
and explicitly state that the file is completely empty.
Fixes #160
2021-05-25 20:52:33 +02:00
ToruNiina
c38079f7c0
fix: remove needless include file
...
that might cause compilation error
2021-05-25 21:40:41 +09:00
ToruNiina
0c4594f59a
doc: add TOML11_PRESERVE_COMMENTS_BY_DEFAULT
2021-05-15 21:53:13 +09:00
ToruNiina
e73c98490b
doc: add recursive find_or to README
2021-05-15 21:47:03 +09:00
ToruNiina
7b9a1abdb3
feat: add test_find_or_recursive
2021-05-15 20:51:43 +09:00
ToruNiina
891f68eab0
feat: support all &/const&/&& variants
2021-05-15 20:41:11 +09:00
ToruNiina
4b1df61142
Merge branch 'master' into recursive-find-or
2021-05-15 20:01:30 +09:00
ToruNiina
392a260db8
doc: write about precedence
2021-05-15 00:24:51 +09:00
ToruNiina
7339ce39d5
fix : #159 Merge branch 'conversion-precedence'
2021-05-14 20:10:03 +09:00
ToruNiina
287be5a575
ci: clang11 is too new to install it
...
without adding a new ppa
2021-05-14 18:25:29 +09:00
ToruNiina
798856946f
ci: add new compilers
...
gcc 10, 11, clang 11
2021-05-14 18:19:44 +09:00
ToruNiina
07c1d10212
ci: avoid clang-9 + C++20 because it lacks <=>
...
And the operator<=> is used in the (GNU-) standard library
implementation installed by default.
Note: consider using libc++ library
2021-05-14 16:16:23 +09:00
ToruNiina
0ac3919e08
feat: from<T> and from_toml precede constructor
...
constructor sometimes has `template<T> ctor(const T&)` and it causes
ambiguity. To avoid it, from<T> and T.from_toml precedes any
constructor. But, to check the ambiguity between from<T> and from_toml,
they do not precede each other. If anyone define both from<T> and
from_toml, it causes compilation error.
2021-05-14 16:05:54 +09:00
ToruNiina
e622595426
fix: fix has_specialized_from/into
...
to avoid ambiguity
2021-05-14 16:01:43 +09:00
ToruNiina
72ee8caf09
refactor: use has_specialized_from<T>
...
to check if toml::from<T> exists for a specific T
2021-05-14 15:53:34 +09:00
ToruNiina
b6e2c6e235
feat: add detail::has_specialization_from/into
2021-05-14 15:46:00 +09:00
ToruNiina
c5a22b9d88
fix : #158 Merge branch 'gcc-wshadow'
...
The -Wshadow warning is avoided from the source code level
2021-05-11 00:08:32 +09:00
ToruNiina
7e90282175
fix: add region where -Wshadow is ignored on GCC 4
2021-05-10 23:00:30 +09:00
ToruNiina
b8291af42b
fix: rename func args to avoid -Wshadow in GCC 4.x
2021-05-10 22:56:16 +09:00
ToruNiina
cd60045014
fix: gcc 7 introduces wshadow variants
2021-05-10 21:51:51 +09:00
ToruNiina
db0d9a024b
test: add -Wshadow while compiling tests
2021-05-10 20:49:41 +09:00
ToruNiina
4acc563b28
feat: explicitly avoid -Wshadow=global in GCC
2021-05-10 20:49:20 +09:00
ToruNiina
dce50142e6
fix: avoid argname key
to supress warning
...
about shadowing
2021-05-10 20:47:08 +09:00
ToruNiina
06e8b853ba
test: add Wshadow=local
2021-05-04 17:50:14 +09:00
ToruNiina
e3092335aa
Merge branch 'enable-to-change-default-comment-handling'
2021-04-30 20:28:38 +09:00
ToruNiina
31b9b79312
ci: suppress clang-8 / c++20 because of gcc header
2021-04-28 15:12:04 +09:00
ToruNiina
beb665ba58
test: explicitly specify if comments are preserved
2021-04-27 13:19:55 +09:00
ToruNiina
b51ef5e869
test: explicitly specify the comment preservation
2021-04-27 13:18:39 +09:00
ToruNiina
21ea4a348d
test: explicitly specify template arguments
...
toml::value is an alias of default parameters, so we need to avoid
conflict of definitions between default and non-default parameters
2021-04-27 13:12:37 +09:00
ToruNiina
c4a803df50
test: add comment/no-comment cases to parse_array
...
When we add a macro to change the default comment preservation scheme,
some of the current tests that assume comments are discarded by defualt
fails. To make it more robust, we need to explicitly specify the comment
preservation scheme and add test cases for both of discard_ and
preserve_comments.
2021-04-27 13:05:03 +09:00
ToruNiina
c40e0dbd37
feat: use comment macro everywhere
2021-04-16 15:29:24 +09:00
ToruNiina
d90c26f9ac
feat: add TOML11_PRESERVE_COMMENTS_BY_DEFAULT
2021-04-16 15:28:58 +09:00
ToruNiina
b592ddcca2
fix: add SFINAE to avoid incorrect matching
2021-04-14 13:09:51 +09:00
ToruNiina
5518b2b155
refactor: simplify last_one_in_pack meta func
2021-04-14 13:09:25 +09:00
ToruNiina
ba3d41d913
feat( #156 ): add find_or(value, keys..., opt)
2021-04-14 11:22:19 +09:00
ToruNiina
8bc09d552a
fix( #139 ): Merge branch 'auto-conversion-macro'
2021-04-02 19:29:04 +09:00
ToruNiina
03c846dc9d
doc: add conversion macro to README
2021-04-02 19:28:45 +09:00
ToruNiina
e658a0126c
test: disable macro testing if the macro is diabled
2021-04-02 18:26:24 +09:00
ToruNiina
6e3967e26e
ci: check compiler version detected by cmake
2021-04-02 18:24:17 +09:00
ToruNiina
db1f42b5da
fix: enable to control macro definition
2021-04-02 17:21:25 +09:00
ToruNiina
c7d6d793cb
ci: install compiler
2021-04-02 17:00:00 +09:00