summaryrefslogtreecommitdiffstats
path: root/src/corelib/serialization/qcborstream.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@qt.io>2018-08-08 11:53:50 +0200
committerMartin Smith <martin.smith@qt.io>2018-08-17 09:54:59 +0000
commitb9a0276a79856ff4eb329b8c79925bfc41925c1c (patch)
tree8767c6adb0c4663b227024555cf7077cdc8a98aa /src/corelib/serialization/qcborstream.cpp
parentd0069ff8c91e0027a0a1f3ef7767dbb13e0eacc4 (diff)
qdoc: Fix remaining qdoc warnings for QCborxxx classes
Several \fn commands are added for functions and operators that were not documented. A few qdoc warnings remain in qcborstream.cpp, but these are because an enum class was used, and qdoc doesn't yet handle those correctly all the time. Change-Id: I02a740c595e36c1b383af242c2a6419d1f37b135 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/serialization/qcborstream.cpp')
-rw-r--r--src/corelib/serialization/qcborstream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/serialization/qcborstream.cpp b/src/corelib/serialization/qcborstream.cpp
index ce1b981f8f..aed286a11f 100644
--- a/src/corelib/serialization/qcborstream.cpp
+++ b/src/corelib/serialization/qcborstream.cpp
@@ -1044,7 +1044,7 @@ void QCborStreamWriter::append(QCborSimpleType st)
Appends the floating point number \a f to the stream, creating a CBOR 16-bit
Half-Precision Floating Point value. The following code can be used to convert
- a C++ \tt float to \l qfloat16 if there's no loss of precision and append it, or
+ a C++ \tt float to \c qfloat16 if there's no loss of precision and append it, or
instead append the \tt float.
\code
@@ -1144,7 +1144,7 @@ void QCborStreamWriter::append(double d)
QCborStreamReader::readByteArray() nor QCborValue support reading CBOR
streams with byte arrays larger than 2 GB.
- \sa append(QByteArray), appendTextString(),
+ \sa append(), appendTextString(),
QCborStreamReader::isByteArray(), QCborStreamReader::readByteArray()
*/
void QCborStreamWriter::appendByteString(const char *data, qsizetype len)