error C2679: binary '>>' : no operator found
The full error message reads: Error C2679: binary ‘<<‘ : no operator found which takes a right-hand operand of type ‘Ar<int>’ (or there is no acceptable conversion) How can I fix it? #include <iostream> using namespace std; template<class T> class Dun { private: T* array{ nullptr }; public: Dun(T* _array) : array(_array) {} T& Get(int… Read More error C2679: binary '>>' : no operator found