You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected: YAML should load without error
Actual: YAML cannot be loaded
Minimal code example
// Open a YAML file. Other streams or strings are also usable as an input.
td::ifstream ifs("invNames.yaml");
// Deserialize the loaded file contents.
fkyaml::node RootNode = fkyaml::node::deserialize(ifs);
Error messages
throw parse_error("Failed to convert a scalar to a floating point value", m_line, m_indent);
Compiler and operating system
Compiler: MSVC v143 - v14.38 - 17.8 OS: Windows
Library version
0.3.14
Validation
The bug also occurs if the latest version from the develop branch is used.