Skip to content

Commit 582b553

Browse files
committed
Update vendor
1 parent 93268cb commit 582b553

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

tests/vendor/cget/pkg/pqrs-org__cpp-json/install/include/pqrs/json.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#pragma once
22

3-
// pqrs::json v1.3
3+
// pqrs::json v1.4
44

55
// (C) Copyright Takayama Fumihiko 2019.
66
// Distributed under the Boost Software License, Version 1.0.
7-
// (See http://www.boost.org/LICENSE_1_0.txt)
7+
// (See https://www.boost.org/LICENSE_1_0.txt)
88

9+
#include "json/formatter.hpp"
910
#include "json/marshal_error.hpp"
1011
#include "json/unmarshal_error.hpp"
1112
#include <nlohmann/json.hpp>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#pragma once
2+
3+
// (C) Copyright Takayama Fumihiko 2024.
4+
// Distributed under the Boost Software License, Version 1.0.
5+
// (See https://www.boost.org/LICENSE_1_0.txt)
6+
7+
#include <nlohmann/json.hpp>
8+
9+
namespace nlohmann {
10+
inline auto format_as(const json& value) { return value.dump(); }
11+
} // namespace nlohmann

tests/vendor/cget/pkg/pqrs-org__cpp-json/install/include/pqrs/json/marshal_error.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// (C) Copyright Takayama Fumihiko 2019.
44
// Distributed under the Boost Software License, Version 1.0.
5-
// (See http://www.boost.org/LICENSE_1_0.txt)
5+
// (See https://www.boost.org/LICENSE_1_0.txt)
66

77
#include <stdexcept>
88

tests/vendor/cget/pkg/pqrs-org__cpp-json/install/include/pqrs/json/unmarshal_error.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// (C) Copyright Takayama Fumihiko 2019.
44
// Distributed under the Boost Software License, Version 1.0.
5-
// (See http://www.boost.org/LICENSE_1_0.txt)
5+
// (See https://www.boost.org/LICENSE_1_0.txt)
66

77
#include <stdexcept>
88

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../cget/pkg/pqrs-org__cpp-json/install/include/pqrs/json/formatter.hpp

0 commit comments

Comments
 (0)