STL_MSFT created this revision. STL_MSFT added reviewers: EricWF, mclow.lists. STL_MSFT added a subscriber: cfe-commits.
Code was recently added to this test that uses std::back_inserter. Therefore, the header <iterator> must be included. (MSVC's STL demands this, as we don't otherwise drag in back_inserter.) https://reviews.llvm.org/D23685 Files: test/std/containers/associative/map/map.cons/copy_assign.pass.cpp Index: test/std/containers/associative/map/map.cons/copy_assign.pass.cpp =================================================================== --- test/std/containers/associative/map/map.cons/copy_assign.pass.cpp +++ test/std/containers/associative/map/map.cons/copy_assign.pass.cpp @@ -17,6 +17,7 @@ #include <cassert> #include <vector> #include <algorithm> +#include <iterator> #include <iostream>
Index: test/std/containers/associative/map/map.cons/copy_assign.pass.cpp =================================================================== --- test/std/containers/associative/map/map.cons/copy_assign.pass.cpp +++ test/std/containers/associative/map/map.cons/copy_assign.pass.cpp @@ -17,6 +17,7 @@ #include <cassert> #include <vector> #include <algorithm> +#include <iterator> #include <iostream>
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits