WIP: paging and better malloc.
This commit is contained in:
18
bastl/include/iterator
Normal file
18
bastl/include/iterator
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
#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)
|
||||
Reference in New Issue
Block a user