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