toml11 icon indicating copy to clipboard operation
toml11 copied to clipboard

TOML for Modern C++

Results 41 toml11 issues
Sort by recently updated
recently updated
newest added

`CMAKE_CXX_STANDARD` is not supposed to be used the way that toml11 is trying to use it. This variable represents the *default* standard version of C++ that targets will be compiled...

I'd like to preserve the parsed format for integral numbers, like `num=0x1234` should output `num=0x1234` I don't see any support for this, would like to implement it, what would be...

The TOML standard specifies: > Arbitrary 64-bit signed integers (from −2^63 to 2^63−1) should be accepted and handled losslessly. If an integer cannot be represented losslessly, an error must be...

Hello, I use the following code to iterate over subtables of a table: ``` fot = toml::find_or(tomlModel,"Body", toml::table{}); for (const auto& node : fot) { try { // Get data...

Currently, I am attempting to use `toml::parse` on a file named `basic_toml.toml`. When I do so, I get this error in the title. I've checked a few times and the...

Would it be possible to add an option that separately compiles the parser and some of the other `detail` code that callers don't need? That would speed up compilation quite...

hello i tried to make a table and it has standard format: [points] x=1 y=1 z=0 [points] x=2 y=1 ...... but i just want to output a toml file with...

Suggestion : It maybe usefull to have a function that can read a folder containing multiple toml files like traefik did : https://doc.traefik.io/traefik/providers/file/#directory

I was trying to use this with vcpkg and encountered issues described in #110 . I've simply applied the changes described in this comment: https://github.com/ToruNiina/toml11/issues/110#issuecomment-917493436 Tested this locally with an...

## program ```c++ #include "toml.hpp" #include int main(int argc, char* argv[]) { if (argc != 2) { return 0; } try { auto data = toml::parse(argv[1]); std::cout