Skip to content

Commit a174145

Browse files
Fixed cpplint warnings
1 parent 298dbfb commit a174145

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/util/xml_expr.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ xmlt xml(
126126
{
127127
result.name="vector";
128128
result.new_element("subtype").new_element()=xml(type.subtype(), ns);
129-
result.new_element("size").new_element()=xml(to_vector_type(type).size(), ns);
129+
result.new_element("size").new_element()=
130+
xml(to_vector_type(type).size(), ns);
130131
}
131132
else if(type.id()==ID_struct)
132133
{
@@ -318,7 +319,8 @@ xmlt xml(
318319

319320
xmlt &e=result.new_element("member");
320321
e.new_element(xml(expr.op0(), ns));
321-
e.set_attribute("member_name",
322+
e.set_attribute(
323+
"member_name",
322324
id2string(to_union_expr(expr).get_component_name()));
323325
}
324326
else

0 commit comments

Comments
 (0)