mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-11-03 17:21:51 +01:00
Apply patch to allow perfect forwarding without variadics. Refs #4892.
[SVN r69244]
This commit is contained in:
@@ -12,14 +12,14 @@
|
||||
#include <boost/make_shared.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
#if !defined( BOOST_HAS_RVALUE_REFS ) || !defined( BOOST_HAS_VARIADIC_TMPL )
|
||||
#if !defined( BOOST_HAS_RVALUE_REFS )
|
||||
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#else // BOOST_HAS_RVALUE_REFS, BOOST_HAS_VARIADIC_TMPL
|
||||
#else // BOOST_HAS_RVALUE_REFS
|
||||
|
||||
class myarg
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user