1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BOOST_PARAMETER_VOID_050329_HPP
- #define BOOST_PARAMETER_VOID_050329_HPP
- namespace boost { namespace parameter {
-
-
- struct void_
- {
- };
- }}
- namespace boost { namespace parameter { namespace aux {
- inline ::boost::parameter::void_& void_reference()
- {
- static ::boost::parameter::void_ instance;
- return instance;
- }
- }}}
- #include <boost/config/workaround.hpp>
- #if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580))
- namespace boost { namespace parameter { namespace aux {
- typedef void* voidstar;
- }}}
- #endif
- #endif
|