summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-26 02:25:25 -0700
committerFuwn <[email protected]>2022-06-26 02:25:25 -0700
commitfd7f84e8b3feb21753a44a60e9ab3eb3a92294e0 (patch)
treeb8fe04847298ff855931bb140bafbf990c0c960b
parentrefactor(node): hide stringable (diff)
downloadcait-fd7f84e8b3feb21753a44a60e9ab3eb3a92294e0.tar.xz
cait-fd7f84e8b3feb21753a44a60e9ab3eb3a92294e0.zip
fix(cli): initialise padding
-rw-r--r--src/cli.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.hh b/src/cli.hh
index 5e6295b..155bbe5 100644
--- a/src/cli.hh
+++ b/src/cli.hh
@@ -29,7 +29,7 @@ namespace cait {
class cli {
private:
int _argc;
- [[maybe_unused]] int padding;
+ [[maybe_unused]] int padding = 0;
char **_argv;
std::map<std::string, std::optional<std::string>> options;