summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2018-01-12 13:20:27 +0100
committerTopi Reiniƶ <topi.reinio@qt.io>2018-01-12 14:23:13 +0000
commit31b0a2d23bead810438a40ef7b93ee31913ac8e3 (patch)
treed10724a4760bd9d9178c061f4295f021baf5a4ce
parent601da46674a7cca9099565b2dac6ca66dad0b82b (diff)
downloadqtserialport-31b0a2d23bead810438a40ef7b93ee31913ac8e3.tar.gz
Doc: Resolve 'Cannot tie this documentation to anything' warning
As QWinOverlappedIoNotifierPrivate is not documented, replace the /*! ... */ comment with a standard C-style comment. Change-Id: I813e62503214fc686b913ccd770fb6e35922baa9 Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--src/serialport/qwinoverlappedionotifier.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/serialport/qwinoverlappedionotifier.cpp b/src/serialport/qwinoverlappedionotifier.cpp
index dfae3b0..615dacc 100644
--- a/src/serialport/qwinoverlappedionotifier.cpp
+++ b/src/serialport/qwinoverlappedionotifier.cpp
@@ -384,9 +384,9 @@ bool QWinOverlappedIoNotifier::waitForNotified(QDeadlineTimer deadline, OVERLAPP
return false;
}
-/*!
- * Note: This function runs in the I/O completion port thread.
- */
+/*
+ * Note: This function runs in the I/O completion port thread.
+ */
void QWinOverlappedIoNotifierPrivate::notify(DWORD numberOfBytes, DWORD errorCode,
OVERLAPPED *overlapped)
{