From 6f4e3936461d0893250e7684928339f6cedf4d0c Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Sat, 3 Oct 2020 12:55:15 +0200 Subject: refactor: remove use of boost::algorithm::replace_first --- src/core_read.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core_read.cpp') diff --git a/src/core_read.cpp b/src/core_read.cpp index 121e62457c..c6416e6f07 100644 --- a/src/core_read.cpp +++ b/src/core_read.cpp @@ -15,7 +15,6 @@ #include #include -#include #include #include @@ -40,8 +39,9 @@ CScript ParseScript(const std::string& s) continue; mapOpNames[strName] = static_cast(op); // Convenience: OP_ADD and just ADD are both recognized: - boost::algorithm::replace_first(strName, "OP_", ""); - mapOpNames[strName] = static_cast(op); + if (strName.compare(0, 3, "OP_") == 0) { // strName starts with "OP_" + mapOpNames[strName.substr(3)] = static_cast(op); + } } } -- cgit v1.2.3