Files
toml11/toml
ToruNiina 3624e4b690 fix: put comment just after non-table values
When non-table value is passed to the `operator<<`, it assumes that the
original C++ code looks like the following.

```cpp
std::cout << "key = " << v << std::endl;
```

In this case, the comment associated to `v` should be put just after
`v`, not before.
```toml
key = # comment <= bad
"value"

key = "value" # comment <= good
```

So, if `v` is not a table it would put comments just after the value.
2019-06-28 17:53:19 +09:00
..
2019-06-09 12:00:28 -07:00
2019-03-16 14:27:05 +09:00
2019-06-19 19:53:08 +09:00
2019-03-16 14:27:05 +09:00
2018-12-13 20:44:10 +09:00
2019-06-19 19:53:08 +09:00
2019-06-22 17:35:40 +09:00