Sıddık AÇIL
Sıddık AÇIL
This package is really old and upstream signature for the function has changed. Since this dependency is not vendored ( and mods were not around ) it is an expected...
Please provide a minimal example of what you are trying to do while creating issues/asking questions.
Thanks for your quick response. To my understanding, we are adding a convert overload to make String to Date conversion work. Are there any future plans to add this into...
The link now redirects to Steve Maurer's memorial page as he passed away last year.
Can you share your `CMakeLists.txt` or a part of it as a "Minimal Reproducible Example"? Also I do not think that you should be setting `CMAKE_USE_WIN32_THREADS_INIT` explicitly as it is...
This turned out to be pretty ugly. I think the following diff patches it. ```diff diff --git a/src/exp.h b/src/exp.h index 301449e..a0d6d76 100644 --- a/src/exp.h +++ b/src/exp.h @@ -37,7 +37,7 @@...
Another way to reproduce: ```cpp YAML::Node config(YAML::NodeType::Map); std::ofstream fout("out.yaml"); fout
Hello, ```cmake cmake_minimum_required(VERSION 3.14.0) project(dummy-project) set(TARGET main) add_executable(${TARGET} src/main.cpp) set_property(TARGET ${TARGET} PROPERTY CXX_STANDARD 20) include(FetchContent) FetchContent_Declare( yaml-cpp GIT_REPOSITORY https://github.com/jbeder/yaml-cpp.git GIT_TAG a6bbe0e50ac4074f0b9b44188c28cf00caf1a723 ) set(YAML_CPP_BUILD_TESTS OFF) FetchContent_MakeAvailable(yaml-cpp) target_link_libraries(${TARGET} yaml-cpp) ``` and `GIT...
The type of the node is initially `NodeType::Null` Then during get operation [this](https://github.com/jbeder/yaml-cpp/blob/master/src/node_data.cpp#L200) happens. ```cpp node& node_data::get(node& key, const shared_memory_holder& pMemory) { switch (m_type) { case NodeType::Map: break; case NodeType::Undefined:...
Loading "usocket" for an MSVC built ECL (commit-hash:2985758cd36ffa50ca68944be95a9a4c99f66b86) on Windows 10 14393 works successfully. ### Steps to Reproduce Installation 1. Get ECL from the repository. 2. Get Visual Studio Build...