Protect new code

This commit is contained in:
Maxime Gimeno 2019-04-04 15:59:02 +02:00
parent b1a747b514
commit 0cace864cd
1 changed files with 3 additions and 0 deletions

View File

@ -77,6 +77,7 @@ namespace CGAL {
{
return begin()==end();
}
#ifndef CGAL_CFG_NO_CPP0X_TUPLE
operator std::tuple<I&, I&>()
{
@ -87,6 +88,8 @@ namespace CGAL {
{
return std::tuple<const I&, const I&>{this->first, this->second};
}
#endif
};
template <typename T>