qt5base-lts/tests/auto/corelib/global
Giuseppe D'Angelo 405244fe30 Fix QVariant/QMetaType::compare APIs
std::optional<int> is the wrong datatype to use for compare.

First and foremost, it can't be used in the idiomatic form of

  auto r = a.compare(b);
  if (r < 0) ~~~ // a is less than b
  if (r > 0) ~~~ // a is greater than b

which we *already* feature in Qt (QString, QByteArray).

Also, std::optional<int> (explicitly) converts to bool, which is
a trap, because the result of the comparison can be accidentally
tested as a bool:

  if (a.compare(b)) ~~~ // oops! does NOT mean a<b

Not to mention extending this to algorithms:

  auto lessThan = [](QVariant a, QVariant b) { return a.compare(b); }; // oops!
  std::ranges::sort(vectorOfVariants, lessThan);

which thankfully doesn't compile as is -- std::optional has
an *explicit* operator bool, and the Compare concept requires an
implicit conversion. However, the error the user is going to face
will be "cannot convert to bool because the operator is explicit",
which is deceiving because the fix is NOT supposed to be:

  auto lessThan = [](QVariant a, QVariant b) { return (bool)a.compare(b); }; // big oops!

Instead: backport to Qt the required subset of C++20's <compare>
API, and use that. This commits just adds the necessary parts
for compare() (i.e. partial ordering), the rest of <compare>
(classes, functions, conversions) can be added to 6.1.

Change-Id: I2b5522da47854da39f79993e1207fad033786f00
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
(cherry picked from commit 3e59c97c3453926fc66479d9ceca03901df55f90)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
2020-11-30 17:16:22 +01:00
..
q_func_info CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qcompare Fix QVariant/QMetaType::compare APIs 2020-11-30 17:16:22 +01:00
qflags Get rid of Q_COMPILER_CONSTEXPR checks 2020-11-17 21:28:11 +01:00
qfloat16 CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qgetputenv CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qglobal CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qglobalstatic CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qhooks CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qkeycombination CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qlogging Extend tests for QLogging 2020-11-17 16:16:10 +01:00
qnumeric Improve qFloatDistance() test coverage 2020-11-17 19:55:04 +01:00
qoperatingsystemversion Add tests for QOperatingSystemVersion 2020-11-09 16:01:33 +01:00
qrandomgenerator QRandomGenerator: add 64-bit bounded() versions 2020-10-20 22:45:06 -07:00
qtendian CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
qwinregistry CMake: Regenerate projects to use new qt_internal_ API 2020-09-23 16:59:06 +02:00
CMakeLists.txt Fix QVariant/QMetaType::compare APIs 2020-11-30 17:16:22 +01:00
global.pro Fix QVariant/QMetaType::compare APIs 2020-11-30 17:16:22 +01:00