X-Git-Url: https://git.dlugolecki.net.pl/?p=command.git;a=blobdiff_plain;f=tests%2Foption%2Fhandles_negative_float_value.cpp;h=6e031139e1d9238dce0c141f72f60d6a6474fc83;hp=02bc7e0d87e5f7712412cbfcc8c337e9c801be7e;hb=ae6743a2a2c69b7a927f64ff1d3abf38a5e7d4bc;hpb=948c501fbb8d47898a9c92697327c5ffa70a898f diff --git a/tests/option/handles_negative_float_value.cpp b/tests/option/handles_negative_float_value.cpp index 02bc7e0..6e03113 100644 --- a/tests/option/handles_negative_float_value.cpp +++ b/tests/option/handles_negative_float_value.cpp @@ -15,12 +15,12 @@ typedef float OptionType; OptionType test; -void function(OptionType value) { +void _function(OptionType value) { test = value; } int main() { - Option option(NAME, "Option with negative float value", function); + Option option(NAME, "Option with negative float value", _function); if (option.understand(OPTION)) { option.handle();