std::vector<int> vec;
auto i = vec.begin(), j = std::next(i);
Error: in a declarator-list 'auto' must always deduce to the same type
|
|||||||||||||||||||
|
|
Compiles fine in g++ on Linux, so it appears to be a compiler bug. Probably this one. |
|||
|
|
|
This appears to be a compiler error. See this link below. http://connect.microsoft.com/VisualStudio/feedback/details/728741 May already have been fixed judging by the comments in the link. |
|||
|
|