remove static from process_escape since we need it exposed in header

This commit is contained in:
xaedes 2023-09-16 20:37:56 +02:00
parent 7930caf24c
commit 8d82d4c8e6
No known key found for this signature in database
GPG key ID: 30030EDD817EA2B1

View file

@ -78,7 +78,7 @@ int32_t get_num_physical_cores() {
return n_threads > 0 ? (n_threads <= 4 ? n_threads : n_threads / 2) : 4;
}
static void process_escapes(std::string& input) {
void process_escapes(std::string& input) {
std::size_t input_len = input.length();
std::size_t output_idx = 0;