mirror of https://github.com/CGAL/cgal
Do not use is_iterator_v for VC2015
This commit is contained in:
parent
c9c6b30cf0
commit
fe7d09ce90
|
|
@ -705,7 +705,11 @@ bool read_PLY_faces(std::istream& in,
|
||||||
ColorOutputIterator fc_out,
|
ColorOutputIterator fc_out,
|
||||||
const char* vertex_indices_tag,
|
const char* vertex_indices_tag,
|
||||||
std::enable_if_t<
|
std::enable_if_t<
|
||||||
|
#if defined(MSC_VER_) && (MSC_VER > 1900)
|
||||||
CGAL::is_iterator_v<ColorOutputIterator>
|
CGAL::is_iterator_v<ColorOutputIterator>
|
||||||
|
#else
|
||||||
|
CGAL::is_iterator<ColorOutputIterator>::value
|
||||||
|
#endif
|
||||||
>* = nullptr)
|
>* = nullptr)
|
||||||
{
|
{
|
||||||
typedef CGAL::IO::Color Color_rgb;
|
typedef CGAL::IO::Color Color_rgb;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue