Possibility to pass class method reference
[command.git] / tests / option / handles_string_value.cpp
index 7f9099d42e8936d6c9eec353579d168600d24e66..c318351b6bbec00eadf717f4df736d6872612548 100644 (file)
@@ -15,12 +15,12 @@ typedef std::string OptionType;
 
 OptionType test;
 
-void function(OptionType value) {
+void _function(OptionType value) {
     test = value;
 }
 
 int main() {
-    Option<OptionType> option(NAME, "Option with string value", function);
+    Option<OptionType> option(NAME, "Option with string value", _function);
 
     if (option.understand(OPTION)) {
         option.handle();