Moved boost::make_transform_iterator into std/transform_iterator.hpp.

This commit is contained in:
Alex Zolotarev 2015-03-31 15:49:38 +03:00
parent 9e20473232
commit 896aa893cd
3 changed files with 14 additions and 5 deletions

View file

@ -2,11 +2,6 @@
#include "../std/iterator_facade.hpp"
#include <boost/iterator/transform_iterator.hpp>
using boost::make_transform_iterator;
namespace detail
{

View file

@ -15,6 +15,7 @@
#include "../std/set.hpp"
#include "../std/bind.hpp"
#include "../std/numeric.hpp"
#include "../std/transform_iterator.hpp"
#ifdef DEBUG
#include "../platform/platform.hpp"

View file

@ -0,0 +1,13 @@
#pragma once
#include "common_defines.hpp"
#ifdef new
#undef new
#endif
#include <boost/iterator/transform_iterator.hpp>
using boost::make_transform_iterator;
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif