Skip to content

Commit eca8fd3

Browse files
committed
refactor: Avoid using std::format
Partially revert #156 due to lack of compiler support for std::format, as reported #156 (comment) and bitcoin/bitcoin#31741 (comment) Technically it means this code is using locale dependent functions again, though I think in practice results will not be locale dependent because these are just integers not floating point numbers being formatted. This code could be written to use std::to_chars and be more independent, at the cost being slightly more complicated. Could be considered for a followup.
1 parent 9ba88dc commit eca8fd3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

example/example.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
#include <filesystem>
6-
#include <format>
76
#include <fstream>
87
#include <future>
98
#include <init.capnp.h>
@@ -26,7 +25,7 @@ static auto Spawn(mp::EventLoop& loop, const std::string& process_argv0, const s
2625
fs::path path = process_argv0;
2726
path.remove_filename();
2827
path.append(new_exe_name);
29-
return {path.string(), std::format("{:d}", fd)};
28+
return {path.string(), std::to_string(fd)};
3029
});
3130
return std::make_tuple(mp::ConnectStream<InitInterface>(loop, fd), pid);
3231
}

src/mp/util.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <mp/util.h>
77

88
#include <errno.h>
9-
#include <format>
109
#include <kj/common.h>
1110
#include <kj/string-tree.h>
1211
#include <pthread.h>
@@ -86,7 +85,9 @@ std::string LogEscape(const kj::StringTree& string)
8685
if (c == '\\') {
8786
result.append("\\\\");
8887
} else if (c < 0x20 || c > 0x7e) {
89-
result.append(std::format("\\{:02x}", c));
88+
char escape[4];
89+
snprintf(escape, 4, "\\%02x", c);
90+
result.append(escape);
9091
} else {
9192
result.push_back(c);
9293
}

0 commit comments

Comments
 (0)