summaryrefslogtreecommitdiff
path: root/lib/filesystem.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-01-08 16:34:43 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-01-08 16:34:43 +0000
commit8cd0977a3688fa705c83867c57505a47b9269369 (patch)
treeb7b48711051299607077ed31fdf3b3f6dd6cc41f /lib/filesystem.cpp
parentTidy shadow map creation (diff)
downloadilt-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.cpp1
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) {