Skip to content

Commit

Permalink
Do not use is_iterator_v for VC2015
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Jun 24, 2022
1 parent c9c6b30 commit fe7d09c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Stream_support/include/CGAL/IO/PLY/PLY_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,11 @@ bool read_PLY_faces(std::istream& in,
ColorOutputIterator fc_out,
const char* vertex_indices_tag,
std::enable_if_t<
#if defined(MSC_VER_) && (MSC_VER > 1900)
CGAL::is_iterator_v<ColorOutputIterator>
#else
CGAL::is_iterator<ColorOutputIterator>::value
#endif
>* = nullptr)
{
typedef CGAL::IO::Color Color_rgb;
Expand Down

0 comments on commit fe7d09c

Please sign in to comment.