ToruNiina
970f7cb36a
ci: trying to update boost installation settings [skip travis] [skip appveyor]
2021-03-25 14:03:26 +09:00
ToruNiina
b924e70e3c
feat: add a simple way to disable <filesystem>
...
As jwillikers pointed out in #150 , there is a case where compiler
defines the corresponding feature test macro of <filesystem> but is
actually not available. The macro is a way to disable the feature
regardless of the status of feature test macro.
2021-03-25 11:44:11 +09:00
Toru Niina
7782258e68
Merge pull request #148 from sneakypete81/patch-1
...
Fix typo in error message
2021-01-31 14:26:02 +09:00
sneakypete81
08859c36d0
Fix typo in error message
2021-01-30 20:04:00 +00:00
ToruNiina
d3de136562
doc: simplity example code a bit
2021-01-25 17:25:29 +09:00
ToruNiina
43183e2ad1
Merge branch 'master' of github.com:ToruNiina/toml11
2020-12-29 18:54:58 +09:00
ToruNiina
e9144b41fb
test: returning toml::value directly from into<T>
2020-12-29 18:53:10 +09:00
ToruNiina
2fb8793f1a
doc: add document about basic_value and toml::into
...
related to #146 .
2020-12-29 18:52:07 +09:00
Toru Niina
6c8a53915a
Merge pull request #144 from amerry/sstream-include-fix
...
Add missing standard includes
2020-12-10 01:53:31 +09:00
Alex Merry
db2d33ca4b
Add missing header for std::out_of_range exception
...
Failure seen on GCC 4.8.5 when including "toml/value.hpp".
2020-12-09 10:39:10 +00:00
Alex Merry
935da51769
Add missing include for ostringstream
...
Since region.hpp no longer includes <iostream> (but only <iomanip>),
source_location.hpp no longer includes a header that provides
std::ostringstream. Including <sstream> fixes this.
2020-12-09 10:19:07 +00:00
ToruNiina
be0d4bd0a9
fix: fix #141 ; Merge branch 'issue-141'
2020-11-05 00:01:41 +09:00
ToruNiina
9b472a6c72
fix: check it is empty before calling back
2020-11-04 23:24:59 +09:00
ToruNiina
1ead14589e
fix: check if it is empty before calling back()
2020-11-04 23:24:02 +09:00
ToruNiina
b13065b1b5
fix : #142 Merge branch 'issue-142'
2020-11-03 21:05:03 +09:00
ToruNiina
a6581ee66b
fix: an empty array is not an array of table
2020-11-03 20:34:01 +09:00
ToruNiina
0dafa7ee42
test: add case where a table should be inlined
...
array-of-table implicitly defines an array. If the array itself has a
comment, we need to format it explicitly.
2020-10-18 20:45:12 +09:00
ToruNiina
908b91079b
fix: distinguish the comments and try to keep it
...
If a value has a comment, we need to try to write it explicitly.
2020-10-18 20:43:33 +09:00
ToruNiina
fce6ff317e
refactor: distinguish the reason of failure
2020-10-18 18:36:05 +09:00
ToruNiina
fd50b11523
refactor: add write_comments()
2020-10-18 18:35:56 +09:00
ToruNiina
9090b8273c
refactor: move array-of-table stuff to a function
2020-10-18 17:20:06 +09:00
ToruNiina
382e3dc3ab
refactor: use serializer::is_array_of_tables
2020-10-14 22:27:29 +09:00
ToruNiina
f7bfcdd7aa
fix: check all the elements in an array
...
while checking if the array is array-of-tables or not (heterogeneous
arrays are allowed, so there might be an array that has a table and
an integer at the same time)
2020-10-14 18:00:04 +09:00
ToruNiina
2e41a26785
Merge branch 'master' of github.com:ToruNiina/toml11 into master
2020-10-14 15:35:18 +09:00
ToruNiina
f3378f0ac1
fix : #131 distinguish implicitly declared array
2020-10-14 15:32:08 +09:00
ToruNiina
12ee73d6a9
ci: suppress some of the combinations in CI
...
clang-7 with C++20 fails with the same reason, 'undefined reference to
std::allocator<char>::(de)allocate'.
2020-10-14 00:38:46 +09:00
ToruNiina
503baf52ed
ci: suppress clang 6 + cxx20
...
Since the main branch that passed the same check 9 days ago also fails
with clang-6 and C++20 because of the same error, "undefined reference
to allocator_traits<char>::allocate". It could be a change in upstream
and since others (e.g. gcc) works well, I suppress the setting at this
moment.
2020-10-14 00:05:55 +09:00
ToruNiina
2deb75052c
ci: use the same version of clang
...
I don't think it resolves the problem, undefined reference to
'std::allocator<char>::deallocate(char*, unsigned long)', though
2020-10-13 23:37:52 +09:00
ToruNiina
290dca3d67
test: add test for comment duplication
2020-10-13 22:04:28 +09:00
ToruNiina
f283a257d2
Revert "quick temporary patch for comment dup"
...
This reverts commit a6d38c1ec0
.
Since the problem is solved, we don't need this patch any more.
2020-10-13 22:02:32 +09:00
ToruNiina
3d86f3a4e1
fix: avoid comment duplication in array of tables
2020-10-13 21:59:46 +09:00
ToruNiina
dc5a8069a9
refactor: require comments while construction
...
Note: at this commit, the code would not compile.
2020-10-13 21:58:08 +09:00
Toru Niina
4f31b90665
Merge pull request #136 from chronoxor/master
...
Fixed: Compile toml11 with MinGW cause error in <filesystem> #135
2020-10-04 18:53:34 +09:00
Ivan Shynkarenka
5d8c573357
Fixed: Compile toml11 with MinGW cause error in <filesystem> #136
2020-10-03 23:16:58 +03:00
Ivan Shynkarenka
6e1e5ccd84
Fixed: Compile toml11 with MinGW cause error in <filesystem> #136
2020-10-03 23:06:47 +03:00
Ivan Shynkarenka
f2d9fd1d1f
Fixed: Compile toml11 with MinGW cause error in <filesystem> #136
2020-10-03 22:36:59 +03:00
Ivan Shynkarenka
97c8cbdaf5
Fixed: Compile toml11 with MinGW cause error in <filesystem> #135
2020-10-02 19:10:04 +03:00
ToruNiina
05ceb5ae79
fix: workaround for error around SFINAE in MSVC
...
avoid lambda with template argument
2020-09-29 02:26:16 +09:00
ToruNiina
96cfdb260a
fix: update version in macro and cmake
2020-09-29 01:41:38 +09:00
ToruNiina
0fec125688
feat: remove default value from internal src
2020-09-29 01:40:49 +09:00
ToruNiina
a6d38c1ec0
fix: add a quick temporary patch for comment dup
...
first aid for #131
2020-09-22 17:36:24 +09:00
ToruNiina
c037913b2c
doc: update link to the TOML spec
2020-09-20 19:24:48 +09:00
ToruNiina
6a328fe890
doc: recommend to set /Zc:__cplusplus
2020-09-20 18:07:58 +09:00
ToruNiina
7c18cbb1d9
doc: update section "contributors"
2020-09-19 20:35:37 +09:00
ToruNiina
ba7d49f452
test: use normal string literal
...
as a workaround for older version of gcc
2020-09-19 19:08:20 +09:00
ToruNiina
b0784ce286
test: in case of comment-before-comma
2020-09-19 18:24:23 +09:00
ToruNiina
670186fac7
Merge branch 'master' into allow-comment-before-comma
2020-09-19 18:10:45 +09:00
ToruNiina
5005998709
Merge branch 'master' into cpp20-mode-u8literal-workaround
2020-09-19 13:42:12 +09:00
ToruNiina
84fb703e04
ci: add utf-8 option to MSVC
2020-09-19 00:41:05 +09:00
ToruNiina
8c2560761b
chore: enable to use __cplusplus on MSVC
...
related: https://github.com/ToruNiina/toml11/issues/112
2020-09-19 00:40:44 +09:00