Skip to content

Commit

Permalink
clang-tidy *sigh*
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Dec 19, 2023
1 parent 446104d commit 75cc727
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/tao/pq/parameter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 >
Expand Down

0 comments on commit 75cc727

Please sign in to comment.