Sprout/sprout/none.hpp
2012-12-17 23:10:23 +09:00

17 lines
302 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