16 lines
274 B
C++
16 lines
274 B
C++
namespace seafire::protocol::grammar
|
|
{
|
|
|
|
/// Skip space.
|
|
///
|
|
template<typename InputIterator>
|
|
void
|
|
skip_space(InputIterator& it, InputIterator const& end)
|
|
{
|
|
while (it != end && is_space(*it)) {
|
|
++it;
|
|
}
|
|
}
|
|
|
|
} // namespace seafire::protocol::grammar
|