forked from boostorg/core
16 lines
338 B
C++
16 lines
338 B
C++
![]() |
/*
|
||
|
Copyright 2019 Glen Joseph Fernandes
|
||
|
(glenjofe@gmail.com)
|
||
|
|
||
|
Distributed under the Boost Software License, Version 1.0.
|
||
|
(http://www.boost.org/LICENSE_1_0.txt)
|
||
|
*/
|
||
|
|
||
|
#include <boost/core/use_default.hpp>
|
||
|
|
||
|
template<class, class = boost::use_default>
|
||
|
struct type { };
|
||
|
|
||
|
template class type<int>;
|
||
|
template class type<void, boost::use_default>;
|