diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-11-14 23:23:51 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-11-14 23:23:51 +0000 |
commit | 174072c1d28f79fb78af0b08c58709f5af1ba965 (patch) | |
tree | 49b77fb2c10fd81a007859a396dfbd9e797a3945 /libcxx/test/std/containers/associative/set/merge.pass.cpp | |
parent | 21981194eb8a5faed0d5fac6b8281a69ad2acb71 (diff) | |
download | bcm5719-llvm-174072c1d28f79fb78af0b08c58709f5af1ba965.tar.gz bcm5719-llvm-174072c1d28f79fb78af0b08c58709f5af1ba965.zip |
[libcxx] [test] Include <cassert> for assert().
This fixes compiler errors with MSVC's STL.
llvm-svn: 346911
Diffstat (limited to 'libcxx/test/std/containers/associative/set/merge.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/associative/set/merge.pass.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/test/std/containers/associative/set/merge.pass.cpp b/libcxx/test/std/containers/associative/set/merge.pass.cpp index 0896596d94f..bbae22c77ea 100644 --- a/libcxx/test/std/containers/associative/set/merge.pass.cpp +++ b/libcxx/test/std/containers/associative/set/merge.pass.cpp @@ -23,6 +23,7 @@ // void merge(multiset<key_type, C2, allocator_type>&& source); #include <set> +#include <cassert> #include "test_macros.h" #include "Counter.h" |