We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec4b51 commit 0a4b82cCopy full SHA for 0a4b82c
src/taint-slicer/instrumenter.cpp
@@ -220,6 +220,10 @@ taint_instrumentert::taint_instrumentert(
220
, use_data_flow_insensitive_version(
221
in_props.data_flow_insensitive_version_applied())
222
{
223
+ // The line below contains two dummy statements preventing Travis complain
224
+ // about not used functions. These statements will be erased in the next PR
225
+ // when the functions will be used.
226
+ (void)&is_pointer_to_array_reference; (void)&is_unary_or_binary_expression;
227
}
228
229
/// Builds a new symbol table from the original symbol
0 commit comments