minor refactor Button

This commit is contained in:
MihailRis
2025-06-27 22:50:47 +03:00
parent ead46158d9
commit f473df33fb
4 changed files with 29 additions and 17 deletions
+1 -1
View File
@@ -308,7 +308,7 @@ dv::value Parser::parseObject(dv::value&& object, int indent) {
object[std::string(name)] = parseFullValue(indent);
skipEmptyLines();
}
return object;
return std::move(object);
}
dv::value yaml::parse(std::string_view filename, std::string_view source) {