File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -203,22 +203,20 @@ bool taint_functions_for_dumping_taint_summary_in_htmlt::
203
203
" <th>Index</th>\n "
204
204
" <th>Name</th>\n "
205
205
" <th>Type</th>\n "
206
- " </tr>\n "
207
- ;
206
+ " </tr>\n " ;
208
207
assert (program.get_namespace ().get_symbol_table ().has_symbol (fn_id));
209
208
const symbolt &fn_symbol=program.get_namespace ().lookup (fn_id);
210
209
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)
212
211
{
213
212
const code_typet::parametert ¶m=fn_type.parameters ().at (i);
214
213
ostr << " <tr>\n "
215
214
" <td>" << i << " </td>\n "
216
215
" <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 (), " " ,
218
217
param.type ()))
219
218
<< " </td>\n "
220
- " </tr>\n "
221
- ;
219
+ " </tr>\n " ;
222
220
}
223
221
ostr << " </table>\n " ;
224
222
You can’t perform that action at this time.
0 commit comments