Files
toml11/toml
ToruNiina 82e8c1e68b fix: skip first ws/newlines in toml literal
when ""_toml literal is used with C++11 raw-string literal,
it normally starts with newline like the following.
```cpp
const auto v = u8R"(
    [table]
    key = "value"
    )"_toml;
```
With this, the error message shows the first empty line that starts just
after `u8R"(` and thus the error message shows nothing. To avoid this,
skip the first empty lines and whitespaces in literal.
2019-04-21 16:31:24 +09:00
..
2019-04-16 13:25:45 +02:00
2019-03-16 14:27:05 +09:00
2019-03-16 14:27:05 +09:00
2018-12-13 20:44:10 +09:00