Fix isString() method in yaml_cpp_adapter

This commit is contained in:
Dominic Reber 2023-12-13 15:48:55 +01:00
parent 9de00d75b4
commit 5d7a6c5c4c

View File

@ -433,7 +433,7 @@ class YamlCppValue
bool isString() const
{
return true;
return m_value.isScalar();
}
private: