From 8dfb3661ec4ea4e1d6aeb623506780c08079c348 Mon Sep 17 00:00:00 2001 From: jeffro256 Date: Tue, 28 May 2024 10:37:42 -0500 Subject: epee: partially revert c56ee140 to fix linking errors On Linux Mint 21.3, g++ Ubuntu 11.4.0-1ubuntu1~22.04, I get linking error for an undefined reference to `epee::string_tools::trim_right`. This PR reverts the changes to epee_readline.cpp in commit c56ee140, which turns a `boost::trim_right` callsite into an `epee::string_tools::trim_right` callsite. --- contrib/epee/src/readline_buffer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'contrib/epee/src/readline_buffer.cpp') diff --git a/contrib/epee/src/readline_buffer.cpp b/contrib/epee/src/readline_buffer.cpp index cefde158c..ac68d1fdb 100644 --- a/contrib/epee/src/readline_buffer.cpp +++ b/contrib/epee/src/readline_buffer.cpp @@ -1,5 +1,4 @@ #include "readline_buffer.h" -#include "string_tools.h" #include #include #include @@ -174,7 +173,7 @@ static void handle_line(char* line) line_stat = rdln::full; the_line = line; std::string test_line = line; - epee::string_tools::trim_right(test_line); + boost::trim_right(test_line); if(!test_line.empty()) { if (!same_as_last_line(test_line)) -- cgit v1.2.3