rcpptoml
rcpptoml copied to clipboard
Rcpp Bindings to C++ parser for TOML files
Results
2
rcpptoml issues
Sort by
recently updated
recently updated
newest added
This should doable thanks to toml++
In order to compile v0.2.3 with Intel Compiler I had to edit the source as follows: ## preprocessor.h Change ``` #ifdef NDEBUG #define TOML_ASSERT_ASSUME(expr) TOML_ASSUME(expr) #else #define TOML_ASSERT_ASSUME(expr) TOML_ASSERT(expr) #endif...