19 lines
338 B
Plaintext
19 lines
338 B
Plaintext
|
|
#pragma once
|
|
|
|
#if !defined(BAD_APPLE_OS_ITERATOR_HPP_INCLUDED)
|
|
#define BAD_APPLE_OS_ITERATOR_HPP_INCLUDED
|
|
|
|
#include <cstddef>
|
|
|
|
namespace std
|
|
{
|
|
template<typename InputIt>
|
|
InputIt next(InputIt it, std::ptrdiff_t n = 1) // TODO: this is not really correct...
|
|
{
|
|
return it + n;
|
|
}
|
|
}
|
|
|
|
#endif // !defined(BAD_APPLE_OS_ITERATOR_HPP_INCLUDED)
|