parent
82327e3cc4
commit
9971d875a4
1 changed files with 2 additions and 2 deletions
|
@ -2400,10 +2400,10 @@ void DerivationGoal::writeStructuredAttrs()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (value.is_null())
|
if (value.is_null())
|
||||||
return "''";
|
return std::string("''");
|
||||||
|
|
||||||
if (value.is_boolean())
|
if (value.is_boolean())
|
||||||
return value.get<bool>() ? "1" : "";
|
return value.get<bool>() ? std::string("1") : std::string("");
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue