File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ namespace tao::pq
36
36
};
37
37
38
38
public:
39
- connection_pool ( const private_key& /* unused*/ , const std::string& connection_info ) noexcept
39
+ connection_pool ( const private_key& /* unused*/ , const std::string& connection_info ) noexcept // NOLINT(modernize-pass-by-value)
40
40
: m_connection_info( connection_info )
41
41
{}
42
42
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ namespace tao::pq
140
140
static_assert ( sizeof ( short ) == 2 );
141
141
142
142
explicit parameter_binary_traits ( const short v ) noexcept
143
- : m_v( bswap_16( v ) )
143
+ : m_v( bswap_16( v ) ) // NOLINT(readability-isolate-declaration)
144
144
{}
145
145
146
146
static constexpr std::size_t columns = 1 ;
@@ -178,7 +178,7 @@ namespace tao::pq
178
178
static_assert ( sizeof ( int ) == 4 );
179
179
180
180
explicit parameter_binary_traits ( const int v ) noexcept
181
- : m_v( bswap_32( v ) )
181
+ : m_v( bswap_32( v ) ) // NOLINT(readability-isolate-declaration)
182
182
{}
183
183
184
184
static constexpr std::size_t columns = 1 ;
@@ -216,7 +216,7 @@ namespace tao::pq
216
216
static_assert ( sizeof ( long ) == 8 );
217
217
218
218
explicit parameter_binary_traits ( const long v ) noexcept
219
- : m_v( bswap_64( v ) )
219
+ : m_v( bswap_64( v ) ) // NOLINT(readability-isolate-declaration)
220
220
{}
221
221
222
222
static constexpr std::size_t columns = 1 ;
You can’t perform that action at this time.
0 commit comments