diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-02-11 12:51:19 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-02-11 12:51:19 +0000 |
commit | daed67fffe1e3d8f09f1a84a76059c74765a960c (patch) | |
tree | 622830bde8d862d1bb071316fe2d5e638b492fa5 | |
parent | d247ac44cc9d52d7dfa15cb3d1785c554ea66e81 (diff) | |
download | bcm5719-llvm-daed67fffe1e3d8f09f1a84a76059c74765a960c.tar.gz bcm5719-llvm-daed67fffe1e3d8f09f1a84a76059c74765a960c.zip |
separate nested >>
llvm-svn: 260516
-rw-r--r-- | libcxx/test/support/container_test_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/support/container_test_types.h b/libcxx/test/support/container_test_types.h index 54657eb170d..7c9dee08502 100644 --- a/libcxx/test/support/container_test_types.h +++ b/libcxx/test/support/container_test_types.h @@ -482,7 +482,7 @@ struct unordered_map_type { type; }; -template <class Key = CopyInsertable<1>, class Value = CopyInsertable<2>> +template <class Key = CopyInsertable<1>, class Value = CopyInsertable<2> > struct unordered_multimap_type { typedef std::pair<const Key, Value> ValueTp; typedef |