mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +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
|