]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.h
Small cleanup in execute_uci_command()
[stockfish] / src / ucioption.h
index 6c9812189744a5bd93cf0fbc9915360019917433..ae7d392a01d8e52fc4942f18c540a3383f58a30b 100644 (file)
@@ -37,7 +37,7 @@ public:
 
 private:
   friend void init_uci_options();
-  friend void print_uci_options();
+  friend std::string options_to_uci();
 
   std::string defaultValue, currentValue, type;
   size_t idx;
@@ -75,6 +75,6 @@ typedef std::map<std::string, Option, CaseInsensitiveLess> OptionsMap;
 
 extern OptionsMap Options;
 extern void init_uci_options();
-extern void print_uci_options();
+extern std::string options_to_uci();
 
 #endif // !defined(UCIOPTION_H_INCLUDED)