diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-20 14:20:05 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-20 14:20:05 +0100 |
| commit | 00737925dc1adc26faa7bcde8f15ce97c45cadb3 (patch) | |
| tree | 409126e23203a33bc55c877158e800b36716f96e | |
| parent | 90830c13b6a143f1c370a2007100d2fdb069a090 (diff) | |
| download | apps-dev_tools-00737925dc1adc26faa7bcde8f15ce97c45cadb3.tar.gz | |
Kel cmds sanitization
| -rw-r--r-- | kel_cmds/c++/kel_cmds.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kel_cmds/c++/kel_cmds.cpp b/kel_cmds/c++/kel_cmds.cpp index 1ced1a9..0d0bc11 100644 --- a/kel_cmds/c++/kel_cmds.cpp +++ b/kel_cmds/c++/kel_cmds.cpp @@ -1,6 +1,8 @@ #include <forstio/codec/data.hpp> +#include <forstio/codec/args.hpp> #include <iostream> +#include <charconv> #include "common.hpp" @@ -27,7 +29,7 @@ saw::error_or<void> kel_main(int argc, char** argv){ return eov; } } - saw::data<sch::CommandConfig> cmd_data; + // saw::data<kel::sch::CommandConfig> cmd_data; { // Parse from file } |
