Merge pull request #1816 from bska/empty-default-udq-ustr

SMSPEC: Emit Empty Unit String if UDQ Unit Undefined
This commit is contained in:
Joakim Hove
2020-06-09 07:04:00 +02:00
committed by GitHub

View File

@@ -2050,7 +2050,7 @@ namespace Evaluator {
const auto& kw = this->node_->keyword;
return this->udq_.has_unit(kw)
? this->udq_.unit(kw) : "?????";
? this->udq_.unit(kw) : "";
}
} // namespace Evaluator