Merge pull request #1089 from SpecLad:contract-violations

pull/1083/merge
Roman Donchenko 12 years ago committed by OpenCV Buildbot
commit 4d45b3e7f9
  1. 2
      modules/core/include/opencv2/core/cvstd.hpp
  2. 13
      modules/core/src/command_line_parser.cpp

@ -580,6 +580,8 @@ String::~String()
inline inline
String& String::operator=(const String& str) String& String::operator=(const String& str)
{ {
if (&str == this) return *this;
deallocate(); deallocate();
if (str.cstr_) CV_XADD(((int*)str.cstr_)-1, 1); if (str.cstr_) CV_XADD(((int*)str.cstr_)-1, 1);
cstr_ = str.cstr_; cstr_ = str.cstr_;

@ -136,18 +136,13 @@ void CommandLineParser::getByIndex(int index, bool space_delete, int type, void*
static bool cmp_params(const CommandLineParserParams & p1, const CommandLineParserParams & p2) static bool cmp_params(const CommandLineParserParams & p1, const CommandLineParserParams & p2)
{ {
if (p1.number < p2.number)
return true;
if (p1.number > p2.number) if (p1.number > p2.number)
return false; return false;
if (p1.number == -1 && p2.number == -1) return p1.keys[0].compare(p2.keys[0]) < 0;
{
if (p1.keys[0].compare(p2.keys[0]) > 0)
{
return false;
}
}
return true;
} }
CommandLineParser::CommandLineParser(int argc, const char* const argv[], const String& keys) CommandLineParser::CommandLineParser(int argc, const char* const argv[], const String& keys)

Loading…
Cancel
Save