Sprout/sprout/utility/any_convertible.hpp
2012-11-13 22:17:10 +09:00

19 lines
380 B
C++

#ifndef SPROUT_UTILITY_ANY_CONVERTIBLE_HPP
#define SPROUT_UTILITY_ANY_CONVERTIBLE_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// any_convertible
//
struct any_convertible {
public:
template<typename T>
SPROUT_CONSTEXPR operator T() const {
return T();
}
};
} // namespace sprout
#endif // #ifndef SPROUT_UTILITY_ANY_CONVERTIBLE_HPP