From 0495c381d065713852ee9e61df544ba531223824 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 Nov 2020 01:43:47 +0100 Subject: Use separate clang-tidy configurations for headers and tests --- include/raul/Socket.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/raul/Socket.hpp') diff --git a/include/raul/Socket.hpp b/include/raul/Socket.hpp index ed5204f..96ce597 100644 --- a/include/raul/Socket.hpp +++ b/include/raul/Socket.hpp @@ -203,7 +203,7 @@ Socket::connect(const std::string& uri) } inline bool -Socket::listen() +Socket::listen() // NOLINT(readability-make-member-function-const) { return ::listen(_sock, 64) != -1; } @@ -246,7 +246,7 @@ Socket::close() } inline void -Socket::shutdown() +Socket::shutdown() // NOLINT(readability-make-member-function-const) { if (_sock != -1) { ::shutdown(_sock, SHUT_RDWR); -- cgit v1.2.1