mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
16 lines
316 B
C++
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
|