File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ static const char* DEFAULT_PLOT_PLOTLYURL = "https://cdn.plot.ly/plotly-latest.m
17
17
static const int64_t DEFAULT_PLOT_WIDTH = 1024 ;
18
18
static const int64_t DEFAULT_PLOT_HEIGHT = 768 ;
19
19
20
- static void SetupBenchArgs ()
20
+ static void SetupBenchArgs (ArgsManager& argsman )
21
21
{
22
22
SetupHelpOptions (gArgs );
23
23
@@ -33,7 +33,8 @@ static void SetupBenchArgs()
33
33
34
34
int main (int argc, char ** argv)
35
35
{
36
- SetupBenchArgs ();
36
+ ArgsManager argsman;
37
+ SetupBenchArgs (argsman);
37
38
std::string error;
38
39
if (!gArgs .ParseParameters (argc, argv, error)) {
39
40
tfm::format (std::cerr, " Error parsing command line arguments: %s\n " , error);
Original file line number Diff line number Diff line change 9
9
#include < string>
10
10
#include < vector>
11
11
12
- class UniValue ;
12
+ # include < univalue.h > // For util::SettingsValue = UniValue
13
13
14
14
namespace util {
15
15
You can’t perform that action at this time.
0 commit comments