diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-07-25 23:16:04 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-07-25 23:16:04 +0200 |
commit | af7a61a5464c266426a20e7dacf6c52bb80b28e9 (patch) | |
tree | 2257894c751d29ebf6b2eb1a8d1ec9fcf4c70c62 /test/option.cc | |
parent | 792409865b159aaf49e3153a5f6c136f199e70a3 (diff) | |
download | cpp-utils-af7a61a5464c266426a20e7dacf6c52bb80b28e9.tar.gz cpp-utils-af7a61a5464c266426a20e7dacf6c52bb80b28e9.zip |
lint: fix lints from newer clang-tidy version
Diffstat (limited to 'test/option.cc')
-rw-r--r-- | test/option.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/option.cc b/test/option.cc index cf80374..09c0fdf 100644 --- a/test/option.cc +++ b/test/option.cc @@ -1,6 +1,8 @@ #include <option.h> +#include <cassert> #include <cstdio> #include <cstdlib> +#include <utility> struct checker { static unsigned cnt; |