Skip to content

Commit cbbec00

Browse files
committed
cpplint
1 parent 328021e commit cbbec00

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/taint-analysis/taint_summary_dump.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -203,22 +203,20 @@ bool taint_functions_for_dumping_taint_summary_in_htmlt::
203203
" <th>Index</th>\n"
204204
" <th>Name</th>\n"
205205
" <th>Type</th>\n"
206-
" </tr>\n"
207-
;
206+
" </tr>\n";
208207
assert(program.get_namespace().get_symbol_table().has_symbol(fn_id));
209208
const symbolt &fn_symbol=program.get_namespace().lookup(fn_id);
210209
const code_typet &fn_type=to_code_type(fn_symbol.type);
211-
for (std::size_t i=0UL, n=fn_type.parameters().size(); i!=n; ++i)
210+
for(std::size_t i=0UL, n=fn_type.parameters().size(); i!=n; ++i)
212211
{
213212
const code_typet::parametert &param=fn_type.parameters().at(i);
214213
ostr << " <tr>\n"
215214
" <td>" << i << "</td>\n"
216215
" <td>" << param.get_base_name() << "</td>\n"
217-
" <td>" << to_html_text(from_type(program.get_namespace(),"",
216+
" <td>" << to_html_text(from_type(program.get_namespace(), "",
218217
param.type()))
219218
<< "</td>\n"
220-
" </tr>\n"
221-
;
219+
" </tr>\n";
222220
}
223221
ostr << "</table>\n";
224222

0 commit comments

Comments
 (0)