X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=tests%2Fargument%2Fhandles_negative_int_value.cpp;h=3116526f2c752f092ad15f5c67fa5277f1d62b9a;hb=bba2a7fd86db452c2d9a1668ee649f6d4d51a581;hp=f9c222f9d80caa3f43ec85b3bd616b21c3c7e064;hpb=4d3ba3307820eed7fab532abd2d35e24359b5a51;p=command.git 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();