X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=tests%2Fargument%2Fhandles_negative_float_value.cpp;h=c9e1e8fdb307024e5ede19834cb7e0401f84e3ff;hb=bba2a7fd86db452c2d9a1668ee649f6d4d51a581;hp=7c97467244bb8be08e306d5edf31570006df88d1;hpb=ffa13e9b3700e8e3065b5945dab3dc3924c32b00;p=command.git diff --git a/tests/argument/handles_negative_float_value.cpp b/tests/argument/handles_negative_float_value.cpp index 7c97467..c9e1e8f 100644 --- a/tests/argument/handles_negative_float_value.cpp +++ b/tests/argument/handles_negative_float_value.cpp @@ -11,12 +11,12 @@ typedef float ArgumentType; ArgumentType test; -void function(ArgumentType value) { +void _function(ArgumentType value) { test = value; } int main() { - Argument argument("Argument as negative float", function); + Argument argument("Argument as negative float", _function); if (argument.understand(VALUE)) { argument.handle();