NO-OP: add missing curly-braces

This commit is contained in:
Nikolaus Gullotta 2019-04-04 10:36:10 -05:00 committed by Nikolaus Gullotta
parent 6c6c26e0db
commit 738d90a5cf
No known key found for this signature in database
GPG key ID: 565F60578092AA31

View file

@ -86,8 +86,9 @@ PhaseControl::set_state (XMLNode const & node, int version)
std::string str;
if (node.get_property (X_("phase-invert"), str)) {
if(str.length() != 0)
if(str.length() != 0) {
set_phase_invert (boost::dynamic_bitset<> (str));
}
}
return 0;