1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

use an empty string for the default node name

This commit is contained in:
Oliver Giles 2015-09-19 15:40:53 +02:00
parent 1caeeabbfd
commit 50dd7b47af

View File

@ -299,9 +299,9 @@ bool Laminar::loadConfiguration() {
if(nm.empty()) {
// add a default node
Node node;
node.name = "default";
node.name = "";
node.numExecutors = 6;
nm.emplace("default", std::move(node));
nm.emplace("", std::move(node));
}
nodes = nm;