Build fix for Boost 1.56

fixes #7001
This commit is contained in:
Gunnar Beutner 2014-08-25 15:12:39 +02:00
parent 95a38fac18
commit 634ef772c3
3 changed files with 3 additions and 4 deletions

View File

@ -22,6 +22,7 @@
#include "base/i2-base.hpp"
#include "base/value.hpp"
#include <boost/range/iterator.hpp>
#include <vector>
namespace icinga

View File

@ -23,6 +23,7 @@
#include "base/i2-base.hpp"
#include "base/object.hpp"
#include "base/value.hpp"
#include <boost/range/iterator.hpp>
#include <map>
namespace icinga

View File

@ -21,6 +21,7 @@
#define STRING_H
#include "base/i2-base.hpp"
#include <boost/range/iterator.hpp>
#include <string.h>
#include <functional>
#include <string>
@ -173,16 +174,12 @@ struct string_iless : std::binary_function<String, String, bool>
namespace boost
{
template <typename C> struct range_mutable_iterator;
template<>
struct range_mutable_iterator<icinga::String>
{
typedef icinga::String::Iterator type;
};
template <typename C> struct range_const_iterator;
template<>
struct range_const_iterator<icinga::String>
{