cpp-hocon
cpp-hocon copied to clipboard
A C++ port of the Typesafe Config library.
## Describe the Bug The following configuration snippet ``` base { } app = ${base} { a { b = 1 } c = [ ${app.a.b} ] } ``` was...
## Describe the Bug In the next version of glibc, 2.34, `SIGSTKSZ` will be changed from a preprocessor constant to an expression involving a runtime function call. This has broken...
I'm able to create parse one existing config using `hocon::config::parse_string`, but when I use `with_fallback` so I can merge it with other config, it returns `config_mergeable` which doesn't contain any...
Use https://github.com/marketplace/actions/doxygen-action to automatically generate regenerate docs in the gh-pages branch on release. We probably need to stop templating Doxyfile and namespaces.dox for this to work well.
I appreciate the work you have done to provide a C++ support for the HOCON configuration file format. I wonder if there is API available to write configuration parameters to...
Normally the library onject and header names are consistent -- is this an accident? Are you likely to change this? I can happily make a pull request but if this...
Thanks for the work on this library. I really need a few examples of the API in use. The unit tests aren't much help, and the Doxygen doesn't show any...
If the JSON I want is an array at the top level, how do I parse that from a HOCON string? I get an exception when parsing "[ { op:...
## Description I made 3 different .conf files where conf_file1 includes conf_file2, and conf_file2 includes conf_file3, each include the conf_file with relative path to it. I put the 3 files...