]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
auth: Fix formatting 15598/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 27 May 2025 13:16:03 +0000 (15:16 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Tue, 27 May 2025 13:16:03 +0000 (15:16 +0200)
modules/geoipbackend/geoipbackend.cc

index 7acf64d022bfdf92cf420b54174dbadac437390e..8f65ed25087455f1727cd15871aeb0b7c74e80cb 100644 (file)
@@ -89,7 +89,8 @@ struct DirPtrDeleter
      - we avoid the annoying "ignoring attributes on template argument ‘int (*)(DIR*)’"
        warning from the compiler, which is there because closedir is tagged as __nonnull((1))
   */
-  void operator()(DIR* dirPtr) const noexcept {
+  void operator()(DIR* dirPtr) const noexcept
+  {
     closedir(dirPtr);
   }
 };