[SimpleConf] Remove comment about empty values

These values are allowed , not least of all because it can be useful to be able to specify an empty value.
This commit is contained in:
TennesseeTrash 2025-06-09 01:41:44 +02:00
parent 04487e3a75
commit a2b0361d86

View file

@ -141,7 +141,6 @@ namespace Garbage
if (keyBegin == keyEnd) {
throw ParseError(currentLine, "Empty key is not allowed");
}
// Allow empty values?
std::string_view key(rawConf.data() + keyBegin, keyEnd - keyBegin);
std::string_view value(rawConf.data() + valueBegin, valueEnd - valueBegin);