X-Git-Url: https://git.dlugolecki.net.pl/?p=command.git;a=blobdiff_plain;f=tests%2Fargument%2Fhandles_negative_int_value.cpp;h=3116526f2c752f092ad15f5c67fa5277f1d62b9a;hp=f9c222f9d80caa3f43ec85b3bd616b21c3c7e064;hb=ae6743a2a2c69b7a927f64ff1d3abf38a5e7d4bc;hpb=948c501fbb8d47898a9c92697327c5ffa70a898f diff --git a/tests/argument/handles_negative_int_value.cpp b/tests/argument/handles_negative_int_value.cpp index f9c222f..3116526 100644 --- a/tests/argument/handles_negative_int_value.cpp +++ b/tests/argument/handles_negative_int_value.cpp @@ -11,12 +11,12 @@ typedef int ArgumentType; ArgumentType test; -void function(ArgumentType value) { +void _function(ArgumentType value) { test = value; } int main() { - Argument argument("Argument as negative int", function); + Argument argument("Argument as negative int", _function); if (argument.understand(VALUE)) { argument.handle();