Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Mar 2, 2024
1 parent acc22b7 commit 0942bbd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/test/pq/connection_pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ class limited_connection_pool
++m_counter;
}

guard( const guard& ) = delete;
guard( guard&& ) = delete;
void operator=( const guard& ) = delete;
void operator=( guard&& ) = delete;

~guard()
{
--m_counter;
Expand Down

0 comments on commit 0942bbd

Please sign in to comment.