summaryrefslogtreecommitdiff
path: root/src/parameters_parser.hh
diff options
context:
space:
mode:
authorEnrico Borba <enricozb@users.noreply.github.com>2024-12-23 09:23:58 +0100
committerGitHub <noreply@github.com>2024-12-23 09:23:58 +0100
commit52125e6336d596aebdd4da91080b3178ddca7449 (patch)
tree27d3e5c01660d567f22fee621c97753f294256b0 /src/parameters_parser.hh
parent14cb35f62b36b2f1aa530adb5e31c05ff1347bfc (diff)
parent9c458c50661446fc6e7295787b06422137af099d (diff)
Merge branch 'master' into enricozb/daemon-stdin
Diffstat (limited to 'src/parameters_parser.hh')
-rw-r--r--src/parameters_parser.hh7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/parameters_parser.hh b/src/parameters_parser.hh
index c11dc501..1b91b6fc 100644
--- a/src/parameters_parser.hh
+++ b/src/parameters_parser.hh
@@ -6,9 +6,8 @@
#include "meta.hh"
#include "array_view.hh"
#include "optional.hh"
-#include "flags.hh"
#include "string.hh"
-#include "string_utils.hh"
+#include "format.hh"
#include <functional>
@@ -41,9 +40,7 @@ struct wrong_argument_count : public parameter_error
class Context;
struct Completions;
-enum class CompletionFlags;
-using ArgCompleter = std::function<Completions (const Context&, CompletionFlags,
- StringView, ByteCount)>;
+using ArgCompleter = std::function<Completions (const Context&, StringView, ByteCount)>;
struct SwitchDesc
{