Revert "some more fixes towards binary compatibility"

This reverts commit a8c5e35619.

Conflicts:
	modules/imgproc/src/imgwarp.cpp
This commit is contained in:
Andrey Kamaev
2012-10-16 19:35:28 +04:00
parent 3ffe0f0117
commit 18ab16dbd3
5 changed files with 14 additions and 52 deletions

View File

@@ -121,7 +121,7 @@ void CvMLData::clear()
void CvMLData::set_header_lines_number( int idx )
{
header_lines_number = (short)std::max(0, idx);
header_lines_number = std::max(0, idx);
}
int CvMLData::get_header_lines_number() const