X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=tests%2Fargument%2Fhandles_int_value.cpp;h=4295286063ed4c9ef192c6b363a09040426cb835;hb=bba2a7fd86db452c2d9a1668ee649f6d4d51a581;hp=ffe130c83cd30549951f3ab306424d41bc65f800;hpb=4d3ba3307820eed7fab532abd2d35e24359b5a51;p=command.git diff --git a/tests/argument/handles_int_value.cpp b/tests/argument/handles_int_value.cpp index ffe130c..4295286 100644 --- a/tests/argument/handles_int_value.cpp +++ b/tests/argument/handles_int_value.cpp @@ -12,12 +12,12 @@ typedef int ArgumentType; ArgumentType test; -void function(ArgumentType value) { +void _function(ArgumentType value) { test = value; } int main() { - Argument argument("Argument as int", function); + Argument argument("Argument as int", _function); if (argument.understand(VALUE)) { argument.handle();