Index: core.hpp =================================================================== --- core.hpp (revision 7058) +++ core.hpp (working copy) @@ -1855,8 +1855,8 @@ template _Tp& at(const int* idx); template const _Tp& at(const int* idx) const; - template _Tp& at(const Vec& idx); - template const _Tp& at(const Vec& idx) const; + //template _Tp& at(const Vec& idx); + //template const _Tp& at(const Vec& idx) const; //! special versions for 2D arrays (especially convenient for referencing image pixels) template _Tp& at(Point pt); @@ -2711,10 +2711,10 @@ //! returns read-only reference to the specified element const _Tp& operator ()(const int* idx) const; - //! returns reference to the specified element - template _Tp& operator ()(const Vec& idx); - //! returns read-only reference to the specified element - template const _Tp& operator ()(const Vec& idx) const; + ////! returns reference to the specified element + //template _Tp& operator ()(const Vec& idx); + ////! returns read-only reference to the specified element + //template const _Tp& operator ()(const Vec& idx) const; //! returns reference to the specified element (1D case) _Tp& operator ()(int idx0);