From 7d9d6a32368202f92fee1712c01a06f6c594af5d Mon Sep 17 00:00:00 2001 From: Unbewohnte Date: Mon, 17 Jan 2022 18:01:07 +0300 Subject: [PATCH] Changed version number; Removed deprecated --benchmark flag --- src/main.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index d102d19..5420ab7 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,7 +28,7 @@ along with broom. If not, see . #include "broom.hpp" // Broom version number -#define VERSION "v0.1.2" +#define VERSION "v0.2.0" void print_help() { std::cout @@ -66,7 +66,6 @@ void print_version() { int main(int argc, char* argv[]) { - bool benchmarking = false; bool sweeping = false; std::filesystem::path tracked_path; @@ -88,9 +87,6 @@ int main(int argc, char* argv[]) { print_version(); return 0; } - else if (strcmp(argv[i], "-b") == 0 || strcmp(argv[i], "--benchmark") == 0) { - benchmarking = true; - } else if (strcmp(argv[i], "sweep") == 0) { sweeping = true; }