Skip to content

Commit e36b52e

Browse files
committed
prerelease
1 parent ed3ac26 commit e36b52e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/command.hpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ struct CommandLineArgs {
2929
end(""),
3030
regex(""),
3131
metric(""),
32-
resource(""),
3332
filename(""),
33+
resource(""),
3434
uri(""),
3535
database(""),
3636
group(""),
@@ -39,9 +39,9 @@ struct CommandLineArgs {
3939
js(""),
4040
output(""),
4141
gnuplot(""),
42-
raw(false),
4342
quiet(true),
44-
verbose(false) {
43+
verbose(false),
44+
raw(false) {
4545
}
4646

4747
void check(const char *progname) {}
@@ -363,7 +363,6 @@ class Command {
363363

364364
virtual int executeLoadPost(const char* file, string body) {
365365

366-
double speed_upload, total_time;
367366
FILE *fd;
368367

369368
fd = fopen(file, "rb"); /* open file to upload */

src/mlconfigure/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ int main(int argc, char *argv[]) {
3838

3939
// create, update and delete resources
4040

41+
cout << "not implemented yet" << endl;
42+
4143
} catch (std::bad_alloc) {
4244
cout << "Error with ml-config" << endl;
4345
}

0 commit comments

Comments
 (0)