merge #20067: remove use of boost::algorithm::replace_first

This commit is contained in:
Kittywhiskers Van Gogh 2020-10-03 12:55:15 +02:00
parent db248e82a0
commit 9af3760ae3

View File

@ -16,7 +16,6 @@
#include <version.h>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/split.hpp>
#include <algorithm>
@ -41,8 +40,9 @@ CScript ParseScript(const std::string& s)
std::string strName(name);
mapOpNames[strName] = static_cast<opcodetype>(op);
// Convenience: OP_ADD and just ADD are both recognized:
boost::algorithm::replace_first(strName, "OP_", "");
mapOpNames[strName] = static_cast<opcodetype>(op);
if (strName.compare(0, 3, "OP_") == 0) { // strName starts with "OP_"
mapOpNames[strName.substr(3)] = static_cast<opcodetype>(op);
}
}
}