summaryrefslogtreecommitdiff
path: root/include/o3tl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-10-27 09:38:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2023-10-27 11:11:00 +0200
commit550eb0d45117836cdea2112ee37a3fd7219a90b5 (patch)
tree992e6ab3fc0bfc84218d216703516751d690519b /include/o3tl
parent435f1aadf7dd8087a8997924bedfccff0f496ba2 (diff)
Clarify that o3tl::cmp_* is still needed for LLVM 12 libc++ for now
...which is apparently used by Android builds, so <https://gerrit.libreoffice.org/c/core/+/158513> "Directly use std::cmp_*, drop o3tl::cmp_*" cannot go in, yet Change-Id: If8b3ef1e647b6e33c43d0fe5737daf63eda0b761 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158524 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/o3tl')
-rw-r--r--include/o3tl/intcmp.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/o3tl/intcmp.hxx b/include/o3tl/intcmp.hxx
index 1324afcdaf7d..dbc10d9052b0 100644
--- a/include/o3tl/intcmp.hxx
+++ b/include/o3tl/intcmp.hxx
@@ -20,7 +20,7 @@ namespace o3tl
{
// An approximation of the C++20 integer comparison functions
// (<https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2020/p0586r2.html> "Safe integral
-// comparisons"):
+// comparisons"), still missing from LLVM 12 libc++:
#if defined __cpp_lib_integer_comparison_functions
using std::cmp_equal;