X-Git-Url: https://git.dlugolecki.net.pl/?p=command.git;a=blobdiff_plain;f=tests%2Fargument%2Fhandles_negative_float_value.cpp;h=c9e1e8fdb307024e5ede19834cb7e0401f84e3ff;hp=7c97467244bb8be08e306d5edf31570006df88d1;hb=ae6743a2a2c69b7a927f64ff1d3abf38a5e7d4bc;hpb=948c501fbb8d47898a9c92697327c5ffa70a898f 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();