1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_LOCAL_FUNCTION_AUX_NOBIND_HPP_
- #define BOOST_LOCAL_FUNCTION_AUX_NOBIND_HPP_
- #include <boost/local_function/config.hpp>
- #if !BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
- namespace boost { namespace local_function { namespace aux {
- typedef int nobind_t;
- static nobind_t nobind;
- void no_unused_nobind_warning_(nobind_t* ptr = &nobind);
- } } }
- #endif
- #endif
|