temporary fix for visual

This commit is contained in:
Sébastien Loriot 2011-04-29 14:32:31 +00:00
parent a54f16d874
commit 0a1b070ed1
1 changed files with 5 additions and 2 deletions

View File

@ -26,6 +26,7 @@
#define CGAL_TAGS_H #define CGAL_TAGS_H
#include <CGAL/IO/io_tags.h> #include <CGAL/IO/io_tags.h>
#include <boost/config.hpp>
namespace CGAL { namespace CGAL {
@ -48,8 +49,10 @@ inline bool check_tag( Tag_false) {return false;}
struct Null_tag {}; struct Null_tag {};
struct Null_functor { struct Null_functor {
// typedef Null_tag result_type; #if defined(BOOST_MSVC) //temporary fix for VC
// typedef Null_tag second_argument_type; typedef Null_tag result_type;
typedef Null_tag second_argument_type;
#endif
}; };