We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba5eac5 + 252619d commit 3a72e1cCopy full SHA for 3a72e1c
src/lib_json/json_value.cpp
@@ -433,10 +433,19 @@ Value::Value(const Value& other) {
433
dupMeta(other);
434
}
435
436
+#if defined(__GNUC__) && __GNUC__ > 13
437
+#pragma GCC diagnostic push
438
+#pragma GCC diagnostic ignored "-Wuninitialized"
439
+#endif
440
+
441
Value::Value(Value&& other) noexcept {
442
initBasic(nullValue);
443
swap(other);
444
445
446
447
+#pragma GCC diagnostic pop
448
449
450
Value::~Value() {
451
releasePayload();
0 commit comments