diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-01-08 16:34:43 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-01-08 16:34:43 +0000 |
commit | 8cd0977a3688fa705c83867c57505a47b9269369 (patch) | |
tree | b7b48711051299607077ed31fdf3b3f6dd6cc41f /lib/filesystem.cpp | |
parent | Tidy shadow map creation (diff) | |
download | ilt-8cd0977a3688fa705c83867c57505a47b9269369.tar.bz2 ilt-8cd0977a3688fa705c83867c57505a47b9269369.tar.xz ilt-8cd0977a3688fa705c83867c57505a47b9269369.zip |
Fix up all the static analyzer warnings
Diffstat (limited to 'lib/filesystem.cpp')
-rw-r--r-- | lib/filesystem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/filesystem.cpp b/lib/filesystem.cpp index 181fb07..0e19e8d 100644 --- a/lib/filesystem.cpp +++ b/lib/filesystem.cpp @@ -36,6 +36,7 @@ namespace filesystem { } } + // NOLINTNEXTLINE(hicpp-vararg) fh::fh(const char * path, int flags, int mode) : h {open(path, flags, mode)} { if (h == -1) { |