I need help in the simple matter
Im trying to create class
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
template<class T> class merge_sort
{
protected:
vector<T> merge(const vector<T> &a, const vector<T> &b)
{
vector<T> v;
typename vector<T>::iterator A;
A= a.begin();
typename vector<T>::iterator B;
B= b.begin();
...
but compiler gives me next error:
no match for ‘operator=’ in ‘A = ((const std::vector<int, std::allocator<int> >*)a)->std::vector<_Tp, _Alloc>::begin [with _Tp = int, _Alloc = std::allocator<int>]()’ merge.cpp /merge_sort line 23 C/C++ Problem

vector<T>::iterator A;? – Kiril Kirov Jan 18 '11 at 13:37vector<T>::iteratoris a dependent name ? – Alexandre C. Jan 18 '11 at 13:42Awhich you only use once, in the next line? Also, since this is a template class and would sit in a header - don't put anyusing namespacedeclarations in header files, ever. – Mephane Jan 18 '11 at 14:15.cppfiles, if the template is to be used only in this file. – Alexandre C. Jan 18 '11 at 14:22