C++ "typename" bug in acameracalibration_artificial.cpp, r2641 (Bug #105)
Description
Lines 56 ~61:
template<class T> ostream& operator<<(ostream& out, const Mat_<T>& mat)
{
for(typename Mat_<T>::const_iterator pos = mat.begin(), end = mat.end(); pos != end; ++pos)
out << *pos << " ";
return out;
}
The "typename" is missing, and C++ compiler gave me errors.
OS: Mac OS X 10.6.2
Build architecture: i386
OpenCV version: r2641
Compiler: g++ 4.2
Associated revisions
Merge pull request #105 from ilya-lavrenov:tapi_perf
History
Updated by Anatoly Baksheev about 15 years ago
- Status changed from Open to Done
- (deleted custom field) set to fixed