move_iterator visualizer should use _Current by fsb4000 · Pull Request #4836 · microsoft/STL (original) (raw)

#include #include #include

int main() { std::vectorstd::string v{ "This", "", "is", "", "an", "_", "example" }; auto begin = std::make_move_iterator(v.begin()); return 0; }