Skip to content

Commit 0a4b82c

Browse files
committed
Dummy statements preventing Travis to complain about not used functions.
These statements will be erased in the next PR when the functions will be used.
1 parent bec4b51 commit 0a4b82c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/taint-slicer/instrumenter.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,10 @@ taint_instrumentert::taint_instrumentert(
220220
, use_data_flow_insensitive_version(
221221
in_props.data_flow_insensitive_version_applied())
222222
{
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;
223227
}
224228

225229
/// Builds a new symbol table from the original symbol

0 commit comments

Comments
 (0)