Skip to content

Commit 66cea8e

Browse files
Clang-format
1 parent 0aa419c commit 66cea8e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/xmllang/xml_interface.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ static void get_xml_options(const xmlt &xml, cmdlinet &cmdline)
2727
get_xml_options(e, cmdline);
2828
}
2929

30-
if(xml.name=="valueOption")
30+
if(xml.name == "valueOption")
3131
{
32-
std::string name=xml.get_attribute("name");
33-
std::string value=xml.get_attribute("actual");
32+
std::string name = xml.get_attribute("name");
33+
std::string value = xml.get_attribute("actual");
3434

35-
if(name=="")
35+
if(name == "")
3636
cmdline.args.push_back(value);
3737
else
3838
cmdline.set(name, value);
3939
}
40-
else if(xml.name=="flagOption")
40+
else if(xml.name == "flagOption")
4141
{
42-
if(xml.get_attribute("actual")=="on")
42+
if(xml.get_attribute("actual") == "on")
4343
{
4444
cmdline.set(xml.get_attribute("name"));
4545
}

0 commit comments

Comments
 (0)