diff options
Diffstat (limited to 'libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp b/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp index de2c98c2be8..2d2e81b1723 100644 --- a/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp +++ b/libcxx/test/std/re/re.results/re.results.const/move_assign.pass.cpp @@ -26,7 +26,7 @@ test(const Allocator& a) typedef std::match_results<const CharT*, Allocator> SM; SM m0(a); SM m1; - + m1 = std::move(m0); assert(m1.size() == 0); assert(m1.str() == std::basic_string<CharT>()); |