提交 99d750d5 编写于 作者: A Alexander Alekhin

Merge pull request #19139 from vrabaud:find1

......@@ -189,7 +189,7 @@ TEST(Core_OutputArrayCreate, _13772)
TEST(Core_String, find_last_of__with__empty_string)
{
cv::String s;
size_t p = s.find_last_of("q", 0);
size_t p = s.find_last_of('q', 0);
// npos is not exported: EXPECT_EQ(cv::String::npos, p);
EXPECT_EQ(std::string::npos, p);
}
......
......@@ -620,7 +620,7 @@ namespace cv {
// read section
read_net = false;
++layers_counter;
const size_t layer_type_size = line.find("]") - 1;
const size_t layer_type_size = line.find(']') - 1;
CV_Assert(layer_type_size < line.size());
std::string layer_type = line.substr(1, layer_type_size);
net->layers_cfg[layers_counter]["layer_type"] = layer_type;
......
......@@ -389,7 +389,7 @@ Pin parsePin(const std::string &name)
{
Pin pin(name);
size_t delimiter_pos = name.find_first_of(":");
size_t delimiter_pos = name.find_first_of(':');
if (delimiter_pos != std::string::npos)
{
pin.name = name.substr(0, delimiter_pos);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册