aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/src/string_tools.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2024-12-23 11:03:29 -0500
committerluigi1111 <luigi1111w@gmail.com>2024-12-23 11:03:29 -0500
commitd0ba44cc586635a4dda788c0f513d26661250d59 (patch)
tree6ff38e6ffefaf881ca5cc1e3e6af226faf27bb82 /contrib/epee/src/string_tools.cpp
parentee345b969511e068bde8b2c556105414aeee948b (diff)
parent8dfb3661ec4ea4e1d6aeb623506780c08079c348 (diff)
downloadmonzero-core-d0ba44cc586635a4dda788c0f513d26661250d59.tar.gz
monzero-core-d0ba44cc586635a4dda788c0f513d26661250d59.tar.xz
monzero-core-d0ba44cc586635a4dda788c0f513d26661250d59.zip
Merge pull request #9607
8dfb366 epee: partially revert c56ee140 to fix linking errors (jeffro256)
Diffstat (limited to 'contrib/epee/src/string_tools.cpp')
-rw-r--r--contrib/epee/src/string_tools.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/epee/src/string_tools.cpp b/contrib/epee/src/string_tools.cpp
index 43f7aca9d..081cb9464 100644
--- a/contrib/epee/src/string_tools.cpp
+++ b/contrib/epee/src/string_tools.cpp
@@ -174,19 +174,6 @@ namespace string_tools
}
//----------------------------------------------------------------------------
- void trim_left(std::string& str)
- {
- boost::trim_left(str);
- return;
- }
-
- //----------------------------------------------------------------------------
- void trim_right(std::string& str)
- {
- boost::trim_right(str);
- return;
- }
-
std::string pad_string(std::string s, size_t n, char c, bool prepend)
{
if (s.size() < n)