From 8bcdb88e5c83ae0d887c3f1118ff1aa2c6a068d9 Mon Sep 17 00:00:00 2001 From: slaren Date: Sun, 5 Nov 2023 18:33:52 +0100 Subject: [PATCH] silence common.cpp warning (bonus) --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index 37e3ace8a..6a7114200 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -101,8 +101,8 @@ void process_escapes(std::string& input) { input[output_idx++] = char(val); break; } - // Intentionally fall through to default. } + // fall through default: input[output_idx++] = '\\'; input[output_idx++] = input[input_idx]; break; }