Possibility to pass class method reference
[command.git] / tests / argument / handles_negative_int_value.cpp
index f9c222f9d80caa3f43ec85b3bd616b21c3c7e064..3116526f2c752f092ad15f5c67fa5277f1d62b9a 100644 (file)
@@ -11,12 +11,12 @@ typedef int ArgumentType;
 
 ArgumentType test;
 
-void function(ArgumentType value) {
+void _function(ArgumentType value) {
     test = value;
 }
 
 int main() {
-    Argument<ArgumentType> argument("Argument as negative int", function);
+    Argument<ArgumentType> argument("Argument as negative int", _function);
 
     if (argument.understand(VALUE)) {
         argument.handle();