diff options
Diffstat (limited to 'libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp b/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp index 53e6cee7c47..bb48f0e5e22 100644 --- a/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp +++ b/libcxx/test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp @@ -17,8 +17,8 @@ // template<class Container> // stack(Container) -> stack<typename Container::value_type, Container>; -// -// template<class Container, class Allocator> +// +// template<class Container, class Allocator> // stack(Container, Allocator) -> stack<typename Container::value_type, Container>; @@ -38,7 +38,7 @@ struct A {}; int main() { - + // Test the explicit deduction guides { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; @@ -59,7 +59,7 @@ int main() // I'd like to assert that we've gotten the right allocator in the stack, but // I don't know how to get at the underlying container. } - + // Test the implicit deduction guides { |