From 75cc72709a07c5bcf2cd38ab0b8d0211ab9506c5 Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Tue, 19 Dec 2023 10:21:08 +0100 Subject: [PATCH] clang-tidy *sigh* --- include/tao/pq/parameter.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/tao/pq/parameter.hpp b/include/tao/pq/parameter.hpp index 2b7e9eb..6fa696d 100644 --- a/include/tao/pq/parameter.hpp +++ b/include/tao/pq/parameter.hpp @@ -120,9 +120,8 @@ namespace tao::pq bind_impl( const_cast< const parameter< N >& >( p ) ); } - public: // clang-tidy wants deleted member functions to be public template< std::size_t N > - void bind_impl( parameter< N >&& p ) = delete; + void bind_impl( parameter< N >&& p ) = delete; // NOLINT(modernize-use-equals-delete) public: template< typename... As >