diff options
Diffstat (limited to 'libcxx/test/std/containers/sequences/array/array.special')
-rw-r--r-- | libcxx/test/std/containers/sequences/array/array.special/swap.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/containers/sequences/array/array.special/swap.pass.cpp b/libcxx/test/std/containers/sequences/array/array.special/swap.pass.cpp index f4751cc7661..6c9ed957b83 100644 --- a/libcxx/test/std/containers/sequences/array/array.special/swap.pass.cpp +++ b/libcxx/test/std/containers/sequences/array/array.special/swap.pass.cpp @@ -35,7 +35,7 @@ std::false_type can_swap_imp(...); template <class Tp> struct can_swap : std::is_same<decltype(can_swap_imp<Tp>(0)), void> {}; -int main() +int main(int, char**) { { typedef double T; @@ -81,4 +81,6 @@ int main() static_assert(!can_swap<C1&>::value, ""); } #endif + + return 0; } |