1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_UNITS_REDUCE_UNIT_HPP_INCLUDED
- #define BOOST_UNITS_REDUCE_UNIT_HPP_INCLUDED
- namespace boost {
- namespace units {
- #ifdef BOOST_UNITS_DOXYGEN
- template<class Unit>
- struct reduce_unit {
- typedef detail::unspecified type;
- };
- #else
- template<class Unit>
- struct reduce_unit {
- typedef Unit type;
- };
- #endif
- }
- }
- #endif
|