From e65caf92af473f97834967714be0a6fa85ccd7ad Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Tue, 16 Jan 2018 13:22:40 +0100 Subject: [PATCH] doc: Remove qdoc marker from inside #if 0 block MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit clang sees the comments inside #if 0 blocks when they occur in source files. Therefore qdoc comments can't appear inside those blocks. Change-Id: I5c9c7e9e002042710a5c26252bc7029b2d163dcf Reviewed-by: Topi Reiniƶ --- src/network/socket/qnativesocketengine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/network/socket/qnativesocketengine.cpp b/src/network/socket/qnativesocketengine.cpp index 03395a37f0..02f3ba14ce 100644 --- a/src/network/socket/qnativesocketengine.cpp +++ b/src/network/socket/qnativesocketengine.cpp @@ -1163,7 +1163,7 @@ bool QNativeSocketEngine::waitForReadOrWrite(bool *readyToRead, bool *readyToWri } #if 0 // currently unused -/*! +/* Returns the size of the operating system's socket receive buffer. Depending on the operating system, this size may be different from what has been set earlier with @@ -1175,7 +1175,7 @@ qint64 QNativeSocketEngine::receiveBufferSize() const return option(ReceiveBufferSocketOption); } -/*! +/* Sets the size of the operating system receive buffer to \a size. For clients, this should be set before connectToHost() is called; @@ -1196,7 +1196,7 @@ void QNativeSocketEngine::setReceiveBufferSize(qint64 size) setOption(ReceiveBufferSocketOption, size); } -/*! +/* Returns the size of the operating system send buffer. Depending on the operating system, this size may be different from what has been set earlier with setSendBufferSize(). @@ -1207,7 +1207,7 @@ qint64 QNativeSocketEngine::sendBufferSize() const return option(SendBufferSocketOption); } -/*! +/* Sets the size of the operating system send buffer to \a size. The operating system send buffer size effectively limits how much