QBasicAtomicXXX: remove the comment about them being "New atomics"

They were new... in commit 1f843ca39e
("Add the new QBasicAtomicXXX implementation - no backends yet") for Qt
5.0, which is what allowed us to use the C++11 atomics. That replaced
the even older implementation from Qt 4.4 where QBasicAtomicInt was a
full class and we didn't support any other integer types. That of course
replaced the even older QBasicAtomic from 4.0, first introduced in 2004
(7 years before C++11).

Change-Id: I53335f845a1345299031fffd176fa251b31bfeea
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Thiago Macieira 2023-07-07 09:20:57 -07:00
parent 271901c5cf
commit 80a431a2e6

View File

@ -19,8 +19,6 @@ QT_END_NAMESPACE
#pragma qt_sync_stop_processing
#endif
// New atomics
template <typename T>
class QBasicAtomicInteger
{