tomlplusplus icon indicating copy to clipboard operation
tomlplusplus copied to clipboard

Header-only TOML config file parser and serializer for C++17.

Results 14 tomlplusplus issues
Sort by recently updated
recently updated
newest added

Firstly, this is one of those very few libraries I've used where I don't think I'd have done much different myself. Well, possibly I'd have made it always non-throwing. Well...

feature

**Is your feature request related to a problem? Please describe.** I'd like to consume the input file on the go, without having to create an intermediate DOM representation. **Describe the...

feature

Lots of generic STL code would always do: ```c++ for(auto &i : container) ``` This prevents the value copy of items being iterated. You have proxy pair in place to...

feature

*— This problem is reported here more as a backlog than as a real problem. It shouldn't really concern people who don't use state-of-the-art compilers with C++ modules. Nevertheless, @marzer...

bug

## Environment **toml++ version and/or commit hash:** v3.4.0 **Compiler:** `nvc++` 23.11: ``` nvc++ 23.11-0 64-bit target on x86-64 Linux -tp tigerlake NVIDIA Compilers and Tools Copyright (c) 2023, NVIDIA CORPORATION...

bug

The latest vcpkg for tomlplusplus now requires pkgconfig, which is a seperate install on windows. Previously I could just add tomlplusplus to my CMakelists.txt. I tried adding the extra PkgConfig...

bug

Hello, this is more a question then a real bug but there was no question to select. I'm currently try to figure out how to iterate over a set of...

bug

## Environment **toml++ version and/or commit hash:** toml++ v3.4.0 **Compiler:** nvcc v12.1 and v11.6 **C++ standard mode:** -std=c++20 and c++17 **Target arch:** x86_64 **Library configuration overrides:** None **Relevant compilation flags:**...

bug

**Is your feature request related to a problem? Please describe.** I have submitted this project to OSS-Fuzz and received word that they would like to accept this project, with the...

feature

**Is your feature request related to a problem? Please describe.** Is it possible to add TOML support for custom types, example: ``` struct Point { int32_t x = 10; int32_t...

feature