Sprout/sprout/string/npos.hpp
2012-10-08 23:49:05 +09:00

16 lines
316 B
C++

#ifndef SPROUT_STRING_NPOS_HPP
#define SPROUT_STRING_NPOS_HPP
#include <cstddef>
#include <sprout/config.hpp>
namespace sprout {
//
// npos
//
namespace {
SPROUT_STATIC_CONSTEXPR std::size_t npos = -1;
} // anonymous-namespace
} // namespace sprout
#endif // #ifndef SPROUT_STRING_NPOS_HPP