Auto specifier

Feb 20, 2014 at 6:10pm
Why cannot deduce the type?

1
2
    vector <int> vec;
    auto Itr = vec.iterator (); 


Source code: http://www.cprogramming.com/c++11/c++11-auto-decltype-return-value-after-function.html
Last edited on Feb 20, 2014 at 6:11pm
Feb 20, 2014 at 6:18pm
auto Itr = vec.iterator ();

This line is incorrect; I think he meant vec.begin();
Feb 20, 2014 at 6:30pm
The method iterator() of vector's template do not exists..
Last edited on Feb 20, 2014 at 6:30pm
Topic archived. No new replies allowed.