// ============================================================================ // // Copyright (c) 1999 The CGAL Consortium // // ---------------------------------------------------------------------------- // // release : // release_date : // // file : include/CGAL/MSVC_standard_header_fixes.h // chapter : $CGAL_Chapter: Configuration $ // // author(s) : Geert-Jan Giezeman // // coordinator : Utrecht University // ============================================================================ #ifndef CGAL_MSVC_STANDARD_HEADER_FIXES_H #define CGAL_MSVC_STANDARD_HEADER_FIXES_H #pragma warning(once: 4291) #pragma warning(once:4503) #if defined _MSC_VER && _MSC_VER >= 1300 #include #endif #include namespace std { using ::sqrt; } #include namespace std{ using ::size_t; using ::ptrdiff_t; } #include namespace std{ using ::time_t; } #endif // CGAL_MSVC_STANDARD_HEADER_FIXES_H