fix: Move return value of parse_layout_symbol

Fixes #1469
This commit is contained in:
patrick96 2018-10-15 17:24:27 +02:00 committed by NBonaparte
parent 5f23114cab
commit 3b32f5899a

View File

@ -208,7 +208,7 @@ namespace xkb_util {
if (string_util::contains(LAYOUT_SYMBOL_BLACKLIST, ";" + name + ";")) {
return "";
}
return name;
return move(name);
}
}