1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-4030: first commit of warning removals unneed const and missing virtual dtors.

This commit is contained in:
benthompson15
2020-06-23 13:51:36 -05:00
parent 410cf29ff2
commit eac7dab096
64 changed files with 169 additions and 165 deletions

View File

@ -126,7 +126,7 @@ public:
/** test if this socket is open
*
*/
virtual const bool isOpen() const = 0;
virtual bool isOpen() const = 0;
/** get the SocketParms
*
@ -158,7 +158,7 @@ public:
*/
virtual void syncProto(bool use) = 0;
virtual const int getConnectionNum() const = 0;
virtual int getConnectionNum() const = 0;
/** return the address as a string
*
@ -168,7 +168,7 @@ public:
/** compare 2 addresses
*
*/
virtual const bool isSameAddr(const Socket* rhs) const = 0;
virtual bool isSameAddr(const Socket* rhs) const = 0;
virtual bool isConnected() const = 0;
virtual bool hasData() const = 0;