diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-09 14:19:52 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-09 14:19:52 +0000 |
commit | 7397db9edb79961cc385cf19471519ec9a83decf (patch) | |
tree | 299abdcb38283c2564549ecd955a48121ae6aaf9 | |
parent | Update location of nolint after format (diff) | |
download | netfs-7397db9edb79961cc385cf19471519ec9a83decf.tar.bz2 netfs-7397db9edb79961cc385cf19471519ec9a83decf.tar.xz netfs-7397db9edb79961cc385cf19471519ec9a83decf.zip |
Allow recursion in AssertRead
-rw-r--r-- | netfs/daemon/modeCheck.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netfs/daemon/modeCheck.cpp b/netfs/daemon/modeCheck.cpp index 6e65888..49cea44 100644 --- a/netfs/daemon/modeCheck.cpp +++ b/netfs/daemon/modeCheck.cpp @@ -18,6 +18,7 @@ ModeCheck::AssertReadParent(const std::filesystem::path & p) const } void +// NOLINTNEXTLINE(misc-no-recursion) ModeCheck::AssertRead(const std::filesystem::path & p) const { if (p != root) { |