From e2fbd2d46d6076eebae24629d41753358dc7bc92 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 13 Jan 2017 18:39:40 +0100 Subject: [PATCH] Stream_support: No longer a need for replacement of istream >> double for VC++ --- Stream_support/include/CGAL/IO/io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stream_support/include/CGAL/IO/io.h b/Stream_support/include/CGAL/IO/io.h index d83d4ee5c96..f69c1473f72 100644 --- a/Stream_support/include/CGAL/IO/io.h +++ b/Stream_support/include/CGAL/IO/io.h @@ -121,7 +121,7 @@ public: }; #if CGAL_FORCE_IFORMAT_DOUBLE || \ - ( ( _MSC_VER > 1600 ) && (! defined( CGAL_NO_IFORMAT_DOUBLE )) ) + ( ( _MSC_VER > 1600 ) && ( _MSC_VER < 1910 ) && (! defined( CGAL_NO_IFORMAT_DOUBLE )) ) template <> class Input_rep : public IO_rep_is_specialized { double& t;