From aae23046998dc28bb155b054bc750f6ee0e6ec24 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sun, 13 May 2018 16:01:57 +0900 Subject: [PATCH] Fixed wrong type of special functions --- test/support/trivial.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/support/trivial.hpp b/test/support/trivial.hpp index 66eb6011..73592d34 100644 --- a/test/support/trivial.hpp +++ b/test/support/trivial.hpp @@ -51,8 +51,8 @@ struct user_provided_copy #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES struct user_provided_move { - user_provided_move(user_provided_move const&); - user_provided_move& operator=(user_provided_move const&); + user_provided_move(user_provided_move&&); + user_provided_move& operator=(user_provided_move&&); }; #endif