From a6b8394114f8a517d26acc72ad01d0221eb201a8 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 11 Aug 2020 13:11:48 -0700 Subject: [PATCH] Remove some debugging code which was accidentally left in --- src/parse_util.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/parse_util.cpp b/src/parse_util.cpp index c347683bb..d05a99855 100644 --- a/src/parse_util.cpp +++ b/src/parse_util.cpp @@ -568,8 +568,6 @@ wcstring parse_util_escape_string_with_quote(const wcstring &cmd, wchar_t quote, std::vector parse_util_compute_indents(const wcstring &src) { // Make a vector the same size as the input string, which contains the indents. Initialize them // to 0. - static wcstring ssss; - ssss = src; const size_t src_size = src.size(); std::vector indents(src_size, 0);