diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-10-25 17:33:13 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-26 05:47:06 +0000 |
commit | e6dce260833ecddf0da9c85132665a7759fc1f17 (patch) | |
tree | 1deb554cc06bd028335f986303043a5cae757cd2 /sd/source/ui/remotecontrol/BufferedStreamSocket.hxx | |
parent | bebc20c62be2df2cf2741fb82945ce6b631d2fe5 (diff) |
cppcheck:noExplicitConstructor
Change-Id: I06f33af242c60e0349417ceab3ca4a6d47cd402d
Reviewed-on: https://gerrit.libreoffice.org/19589
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/source/ui/remotecontrol/BufferedStreamSocket.hxx')
-rw-r--r-- | sd/source/ui/remotecontrol/BufferedStreamSocket.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/BufferedStreamSocket.hxx b/sd/source/ui/remotecontrol/BufferedStreamSocket.hxx index 5a1c2fcf4b8d..bf27fd02b9bf 100644 --- a/sd/source/ui/remotecontrol/BufferedStreamSocket.hxx +++ b/sd/source/ui/remotecontrol/BufferedStreamSocket.hxx @@ -36,11 +36,11 @@ namespace sd * Create a BufferedStreamSocket on top of an * osl::StreamSocket. */ - BufferedStreamSocket( const osl::StreamSocket &aSocket ); + explicit BufferedStreamSocket( const osl::StreamSocket &aSocket ); /** * Create a BufferedStreamSocket on top of a POSIX or WinSock socket. */ - BufferedStreamSocket( int aSocket ); + explicit BufferedStreamSocket( int aSocket ); BufferedStreamSocket( const BufferedStreamSocket &aSocket ); /** * Blocks until a line is read. |