From 89dcf9c51fc61449356895616743475778ea0937 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 2 Jan 2026 14:20:22 -0600 Subject: [PATCH] str.cpp --- src/str.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/str.cpp b/src/str.cpp index 470258da..8000063a 100644 --- a/src/str.cpp +++ b/src/str.cpp @@ -357,6 +357,8 @@ str::remove_prefix(const std::string &str_, std::string s{str_}; s.erase(0,prefix_.size()); + + return s; } return str_;