Skip to content

Commit d6af6f7

Browse files
committed
fix: build issue
1 parent cd32f52 commit d6af6f7

2 files changed

Lines changed: 0 additions & 5 deletions

File tree

src/json.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <iostream>
88
#include <limits>
99
#include <memory>
10-
#include <print>
1110
#include <stack>
1211
#include <json/json.hpp>
1312

src/string_reader.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <iostream>
88
#include <limits>
99
#include <memory>
10-
#include <print>
1110
#include <stack>
1211
#include <json/json.hpp>
1312

@@ -224,7 +223,6 @@ namespace json {
224223
while (it != end && in_string) {
225224
if (in_escape) {
226225
if (*it != 'u' && lead) {
227-
std::print("cleaning 0x{:x}\n", *lead);
228226
encode(UNI_REPLACEMENT_CHAR, result);
229227
lead = std::nullopt;
230228
}
@@ -340,8 +338,6 @@ namespace json {
340338
return {};
341339

342340
if (lead) {
343-
std::print("cleaning 0x{:x}, pushing '{}'\n", *lead,
344-
(char)*it);
345341
encode(UNI_REPLACEMENT_CHAR, result);
346342
lead = std::nullopt;
347343
}

0 commit comments

Comments
 (0)