so the parentheses matches.
also add a space before the ending "}", so it looks better.
Reported-by: Bingyin Zhang <zhangbingyin@cloudin.cn>
Signed-off-by: Kefu Chai <kchai@redhat.com>
}
ostream& operator <<(ostream& m, const Condition& c) {
- m << "{ " << condop_string(c.op);
+ m << condop_string(c.op);
if (c.ifexists) {
m << "IfExists";
}
m << ": { " << c.key;
print_array(m, c.vals.cbegin(), c.vals.cend());
- return m << "}";
+ return m << " }";
}
Effect Statement::eval(const Environment& e,