Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ jobs:
TransactionDeathTest.AccessAfterCommit
TransactionDeathTest.AccessAfterRollback
PostgreCluster.TransactionTimeouts
'*ViaChaosProxy'
HttpClient.HttpsWithCrl
HttpClient.HttpsWithNoClientCa
HttpClient.StatsOnTimeout
Expand Down
8 changes: 4 additions & 4 deletions libraries/protobuf/tests/json/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ inline const /*deliberately non-constexpr*/ bool

template <>
struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::PrintOptions> {
auto parse(fmt::format_parse_context& ctx) {
constexpr auto parse(fmt::format_parse_context& ctx) {
auto it = ctx.begin();
if (it != ctx.end() && *it != '}') {
throw fmt::format_error("invalid format");
Expand All @@ -79,7 +79,7 @@ struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::PrintOptions> {

template <>
struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::ParseOptions> {
auto parse(fmt::format_parse_context& ctx) {
constexpr auto parse(fmt::format_parse_context& ctx) {
auto it = ctx.begin();
if (it != ctx.end() && *it != '}') {
throw fmt::format_error("invalid format");
Expand All @@ -101,7 +101,7 @@ struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::ParseOptions> {

template <>
struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::PrintErrorCode> {
auto parse(fmt::format_parse_context& ctx) {
constexpr auto parse(fmt::format_parse_context& ctx) {
auto it = ctx.begin();
if (it != ctx.end() && *it != '}') {
throw fmt::format_error("invalid format");
Expand All @@ -123,7 +123,7 @@ struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::PrintErrorCode> {

template <>
struct fmt::formatter<USERVER_NAMESPACE::protobuf::json::ParseErrorCode> {
auto parse(fmt::format_parse_context& ctx) {
constexpr auto parse(fmt::format_parse_context& ctx) {
auto it = ctx.begin();
if (it != ctx.end() && *it != '}') {
throw fmt::format_error("invalid format");
Expand Down
Loading