doc: Remove qdoc marker from inside #if 0 block
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ö <topi.reinio@qt.io>
This commit is contained in:
parent
706e8a0295
commit
e65caf92af
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user