Sprout/sprout/none.hpp
2012-10-22 23:10:11 +09:00

17 lines
299 B
C++

#ifndef SPROUT_NONE_HPP
#define SPROUT_NONE_HPP
#include <sprout/config.hpp>
namespace sprout {
//
// none_t
// none
//
struct none_t {};
namespace {
SPROUT_STATIC_CONSTEXPR none_t none{};
} // anonymous-namespace
} // namespace sprout
#endif // #ifndef SPROUT_NONE_HPP