core: drop unnecessary duplicate check

pull/11654/head
Alexander Alekhin 7 years ago
parent 1822e85f4a
commit 03edddba47
  1. 14
      modules/core/include/opencv2/core/cvstd.inl.hpp

@ -77,11 +77,8 @@ inline
String::String(const std::string& str) String::String(const std::string& str)
: cstr_(0), len_(0) : cstr_(0), len_(0)
{ {
if (!str.empty()) size_t len = str.size();
{ if (len) memcpy(allocate(len), str.c_str(), len);
size_t len = str.size();
if (len) memcpy(allocate(len), str.c_str(), len);
}
} }
inline inline
@ -99,11 +96,8 @@ inline
String& String::operator = (const std::string& str) String& String::operator = (const std::string& str)
{ {
deallocate(); deallocate();
if (!str.empty()) size_t len = str.size();
{ if (len) memcpy(allocate(len), str.c_str(), len);
size_t len = str.size();
if (len) memcpy(allocate(len), str.c_str(), len);
}
return *this; return *this;
} }

Loading…
Cancel
Save