#pragma once #if !defined(BAD_APPLE_OS_ITERATOR_HPP_INCLUDED) #define BAD_APPLE_OS_ITERATOR_HPP_INCLUDED #include namespace std { template 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)