Apply readability-avoid-const-params-in-decls

This commit is contained in:
Alexey Rybalchenko
2021-09-13 10:57:36 +02:00
committed by Dennis Klein
parent 42a7e298c0
commit f33c597f34
27 changed files with 132 additions and 132 deletions

View File

@@ -51,15 +51,15 @@ class Socket final : public fair::mq::Socket
auto GetSocket() const -> void* { return nullptr; }
void SetLinger(const int value) override;
void SetLinger(int value) override;
int GetLinger() const override;
void SetSndBufSize(const int value) override;
void SetSndBufSize(int value) override;
int GetSndBufSize() const override;
void SetRcvBufSize(const int value) override;
void SetRcvBufSize(int value) override;
int GetRcvBufSize() const override;
void SetSndKernelSize(const int value) override;
void SetSndKernelSize(int value) override;
int GetSndKernelSize() const override;
void SetRcvKernelSize(const int value) override;
void SetRcvKernelSize(int value) override;
int GetRcvKernelSize() const override;
auto Close() -> void override;