diff options
Diffstat (limited to 'libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp b/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp index a219f418401..58cb7f53576 100644 --- a/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp +++ b/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp @@ -16,8 +16,8 @@ // template<class Container> // queue(Container) -> queue<typename Container::value_type, Container>; -// -// template<class Container, class Allocator> +// +// template<class Container, class Allocator> // queue(Container, Allocator) -> queue<typename Container::value_type, Container>; @@ -36,7 +36,7 @@ struct A {}; int main() { - + // Test the explicit deduction guides { std::list<int> l{0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; @@ -57,7 +57,7 @@ int main() // I'd like to assert that we've gotten the right allocator in the queue, but // I don't know how to get at the underlying container. } - + // Test the implicit deduction guides { // We don't expect this one to work - no way to implicitly get value_type |