diff options
-rw-r--r-- | Jamroot.jam | 2 | ||||
-rw-r--r-- | netfs/fuse/fuseAppBase.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 1dd6e98..368a244 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -33,7 +33,9 @@ project <toolset>tidy:<xcheckxx>hicpp-no-array-decay <toolset>tidy:<checkxx>performance-* <toolset>tidy:<exclude>daemonConfig.h + <toolset>tidy:<exclude>slicer-daemonConfig.cpp <toolset>tidy:<exclude>fuseConfig.h + <toolset>tidy:<exclude>slicer-fuseConfig.cpp <toolset>tidy:<exclude>directory.h <toolset>tidy:<exclude>exceptions.h <toolset>tidy:<exclude>file.h diff --git a/netfs/fuse/fuseAppBase.cpp b/netfs/fuse/fuseAppBase.cpp index f2c1f30..49bb1d9 100644 --- a/netfs/fuse/fuseAppBase.cpp +++ b/netfs/fuse/fuseAppBase.cpp @@ -182,8 +182,8 @@ FuseAppBase::lock(const char *, struct fuse_file_info *, int, struct flock *) { return -ENOSYS; } -// NOLINTNEXTLINE(modernize-avoid-c-arrays, hicpp-avoid-c-arrays) int +// NOLINTNEXTLINE(modernize-avoid-c-arrays, hicpp-avoid-c-arrays) FuseAppBase::utimens(const char *, const struct timespec[2], struct fuse_file_info *) { return -ENOSYS; |