1234567891011121314151617181920 |
- #ifndef BOOST_DETAIL_POD_SINGLETON_DWA200655_HPP
- # define BOOST_DETAIL_POD_SINGLETON_DWA200655_HPP
- namespace boost { namespace detail {
- template<typename T>
- struct pod_singleton
- {
- static T instance;
- };
- template<typename T>
- T pod_singleton<T>::instance;
- }}
- #endif
|