diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2016-08-22 18:45:31 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2016-08-22 18:45:31 +0000 |
| commit | 3820ac31061f59806a2c1cffbbe6e2ef6031ff6f (patch) | |
| tree | eb18c9618be074810af021e781f376369d30b465 /libcxx | |
| parent | 4f7a5c3bb429c945ff4e456478b5532f828d1143 (diff) | |
| download | bcm5719-llvm-3820ac31061f59806a2c1cffbbe6e2ef6031ff6f.tar.gz bcm5719-llvm-3820ac31061f59806a2c1cffbbe6e2ef6031ff6f.zip | |
Add missing include that caused a test failure on Windows. Thanks to STL for the patch. No functional change.
llvm-svn: 279453
Diffstat (limited to 'libcxx')
| -rw-r--r-- | libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp b/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp index cc5d0d5d2f8..2d1cb3a628f 100644 --- a/libcxx/test/std/containers/associative/map/map.cons/copy_assign.pass.cpp +++ b/libcxx/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> |

