16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
|
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
|