diff options
Diffstat (limited to 'libcxx/test/std/containers/container.adaptors/queue/queue.cons')
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp b/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp index de564de6f0e..1605b96b13b 100644 --- a/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp +++ b/libcxx/test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp @@ -19,7 +19,7 @@ int main() -{ +{ // Test the explicit deduction guides { // queue(const Container&, const Alloc&); 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 |