diff options
| author | Fuwn <[email protected]> | 2022-06-24 21:02:28 -1000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-24 21:02:28 -1000 |
| commit | 7d67f24bd15f45967435492bd06012190687ca96 (patch) | |
| tree | e08ec4ff4c1269db1317c7ce87b623e1ee6bf98a | |
| parent | fix(parser): parser_exception out-of-line virtual (diff) | |
| download | cait-7d67f24bd15f45967435492bd06012190687ca96.tar.xz cait-7d67f24bd15f45967435492bd06012190687ca96.zip | |
fix(src): add padding
| -rw-r--r-- | src/cli.hh | 1 | ||||
| -rw-r--r-- | src/token.hh | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,7 @@ namespace cait { class cli { private: int _argc; + [[maybe_unused]] int padding; char **_argv; std::map<std::string, std::optional<std::string>> options; diff --git a/src/token.hh b/src/token.hh index 0724bc7..44f8f69 100644 --- a/src/token.hh +++ b/src/token.hh @@ -67,6 +67,7 @@ public: private: token_type_value value; + [[maybe_unused]] int padding; public: token_type() = default; |