Add implicit conversion between compatible reference wrappers (refs #83)

This commit is contained in:
Peter Dimov
2020-11-19 18:57:56 +02:00
parent 7bc2873e38
commit 54671134ae
5 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
//
// Incompatible reference_wrappers must not implicitly convert to each other
//
// Copyright 2020 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
#include <boost/ref.hpp>
struct X
{
};
struct Y
{
};
void f( boost::reference_wrapper<X> )
{
}
int main()
{
Y y;
f( boost::ref(y) ); // should fail
}