We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d386838 commit 27662d5Copy full SHA for 27662d5
src/util/options.cpp
@@ -27,14 +27,12 @@ void optionst::set_option(const std::string &option,
27
set_option(option, std::string(value?"1":"0"));
28
}
29
30
-void optionst::set_option(const std::string &option,
31
- const signed int value)
+void optionst::set_option(const std::string &option, const int value)
32
{
33
set_option(option, std::to_string(value));
34
35
36
37
- const unsigned int value)
+void optionst::set_option(const std::string &option, const unsigned value)
38
39
40
0 commit comments