summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qfloat16.cpp
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-02-27 19:30:18 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2020-03-03 18:35:21 +0100
commitf03202b560e04d032f6485e65bcd430c4641894e (patch)
treec2e76cf9ef1e0c7d819c1aac845c52125b1c456b /src/corelib/global/qfloat16.cpp
parente5f4e1405947bcecd78f15bd76162ad6b54c2502 (diff)
Fix missing return-type in doc of qfloat16::copySign()
Change-Id: I617081fe3335a85191be7882578644621d5ffede Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/global/qfloat16.cpp')
-rw-r--r--src/corelib/global/qfloat16.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qfloat16.cpp b/src/corelib/global/qfloat16.cpp
index 80a851e4e4..3d82bbe95a 100644
--- a/src/corelib/global/qfloat16.cpp
+++ b/src/corelib/global/qfloat16.cpp
@@ -147,7 +147,7 @@ QT_BEGIN_NAMESPACE
/*!
\since 5.15
- \fn qfloat16::copySign(qfloat16 sign) const noexcept
+ \fn qfloat16 qfloat16::copySign(qfloat16 sign) const noexcept
Returns a qfloat16 with the sign of \a sign but the rest of its value taken
from this qfloat16. Serves as qfloat16's equivalent of std::copysign().