merge branch develop

This commit is contained in:
Neil Groves
2014-03-04 13:51:43 +00:00
59 changed files with 3156 additions and 1376 deletions

View File

@ -95,6 +95,17 @@ namespace boost
return sz;
}
inline bool is_same_address(const void* l, const void* r)
{
return l == r;
}
template<class T1, class T2>
inline bool is_same_object(const T1& l, const T2& r)
{
return range_detail::is_same_address(&l, &r);
}
} // namespace 'range_detail'
} // namespace 'boost'