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

The `fstream` classes are notorious for their non-existent error handling. The stream error bits weren't even checked in the code, resulting in arbitrary malfunctions or crashing in case of an...

## Problem Description It is related to the issue: https://github.com/fmtlib/fmt/issues/2894 According to [vitaut](https://github.com/vitaut)'s comment: > {fmt} doesn't provide formatters for toml11 types. You should check which formatter is being used...

I would like to have convienient a syntax like this: `toml::find(file, "Game.Name")` to pull this value: ```toml [Game] Name = "Name of a game" ```

In the README it mentions that conversion between int/floating cannot be done implicitly. Is this really not possible? If a user wants to set a starting position vector as the...

```vcpkg_fixup_cmake_targets(CONFIG_PATH share/toml11)``` is not enough. toml11config.cmake still looks for ```lib/cmake/toml11```. Perhaps we can avoid hard-coded paths in CMakeLists.txt.

toml11v3.7.0 The `toml2` variable in the below example is copy constructed incorrectly and has an empty array inserted on GCC but is correctly constructed on clang. The error looks to...

As I'd like to redistribute toml11 together with my Objective-C wrapper Library, it would be great to have a single header file amalgamation (vs the `toml.hpp` + `toml` folder) to...

The check for the `std::filesystem` header is not robust enough for older versions of macOS. Versions of macOS up to Mojave may have the `std::filesystem` header while not having support...

Hello I currently use v3.6.0 version of the tomll11 header only library. The parsing part work as expected. But i see few issues w.r.t populating the toml table content in...

``` #define TOML11_VERSION_MAJOR 3 #define TOML11_VERSION_MINOR 5 #define TOML11_VERSION_PATCH 0 ```