blob: 8437d539f2c442948ef3cebd691c8f02d13ef618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
$NetBSD: patch-ext_json11_json11.cpp,v 1.2 2022/09/29 13:49:50 jperkin Exp $
Clang rejects ordering relations for nullptr, so introduce a template
indirection.
--- ext/json11/json11.cpp.orig 2020-09-29 15:26:41.000000000 +0000
+++ ext/json11/json11.cpp
@@ -146,6 +146,13 @@ void Json::dump(string &out) const {
* Value wrappers
*/
+template <typename T> bool json11_less(T a, T b) {
+ return a < b;
+}
+template <> bool json11_less(const std::nullptr_t a, const std::nullptr_t b) {
+ return false;
+}
+
template <Json::Type tag, typename T>
class Value : public JsonValue {
protected:
@@ -164,7 +171,7 @@ protected:
return m_value == static_cast<const Value<tag, T> *>(other)->m_value;
}
bool less(const JsonValue * other) const override {
- return m_value < static_cast<const Value<tag, T> *>(other)->m_value;
+ return json11_less(m_value, static_cast<const Value<tag, T> *>(other)->m_value);
}
const T m_value;
|