toml11/toml
ToruNiina d11e42ca7e fix: explicitly say the table is top-level
The top-level table has its region at the first character of the file.
That means that, in the case when a key is not found in the top-level
table, the error message points to the first character. If the file has
its first table at the first line, the error message would be like this.
```console
[error] key "a" not found
 --> example.toml
   |
 1 | [table]
   | ^------ in this table
```
It actually points to the top-level table at the first character,
not `[table]`. But it is too confusing. To avoid the confusion, the
error message should explicitly say "key not found in the top-level
table".
2020-02-29 22:56:29 +09:00
..
color.hpp refactor: rename internal macro value 2019-12-12 17:38:29 +09:00
combinator.hpp Suppress unused variable warning 2019-11-22 05:59:55 -06:00
comments.hpp fix: check clang macro when checking gcc is used 2020-02-19 17:00:22 +09:00
datetime.hpp fix -Wundef warnings 2020-02-11 06:30:18 -06:00
exception.hpp refactor: add missing explicit to toml::exception 2020-01-19 17:51:24 +09:00
from.hpp feat: add from<T> and into<T> 2019-03-16 14:27:05 +09:00
get.hpp fix: explicitly say the table is top-level 2020-02-29 22:56:29 +09:00
into.hpp feat: add from<T> and into<T> 2019-03-16 14:27:05 +09:00
lexer.hpp fix: handle edge-cases with quotes in ml-string 2020-02-04 22:36:39 +09:00
literal.hpp feat: pass source_location to exception 2019-10-31 22:23:31 +09:00
parser.hpp fix: handle edge-cases with quotes in ml-string 2020-02-04 22:36:39 +09:00
region.hpp refactor: add missing whitespace 2020-02-29 22:54:50 +09:00
result.hpp feat: use detail::none_t instead of char 2019-05-31 17:07:52 +09:00
serializer.hpp fix clang range-loop-analysis warnings 2020-02-11 06:13:55 -06:00
source_location.hpp feat: check line_num before converting it to int 2019-10-31 22:21:24 +09:00
storage.hpp refactor: add explicit to ctors of internal types 2020-01-24 15:58:24 +09:00
string.hpp feat: add operator+= to toml::string 2019-10-09 21:51:14 +09:00
traits.hpp feat: replace detail::stuff by std if possible 2020-01-20 12:18:05 +09:00
types.hpp feat: remove unused trait types 2019-06-22 17:35:40 +09:00
utility.hpp feat: replace detail::stuff by std if possible 2020-01-20 12:18:05 +09:00
value.hpp refactor: simplify internally-used function 2020-02-19 15:46:25 +09:00