From b51e3df52525a40ea8347248cab25841e01edc30 Mon Sep 17 00:00:00 2001 From: dankan1890 Date: Fri, 30 Oct 2015 01:02:09 +0100 Subject: [PATCH] Fixed comment. --- src/osd/osdcomm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h index 8a2beff3463..3a16220ae77 100644 --- a/src/osd/osdcomm.h +++ b/src/osd/osdcomm.h @@ -242,8 +242,8 @@ static __inline double fmin(double x, double y){ return (x < y) ? x : y; } static __inline double fmax(double x, double y){ return (x > y) ? x : y; } static __inline double log2(double x) { return log(x) * M_LOG2E; } #define __func__ __FUNCTION__ -#endif // VS2013 or earlier -#else // #ifndef _MSC_VER +#endif // VS2012 or earlier +#else // VS2015 #define _CRT_STDIO_LEGACY_WIDE_SPECIFIERS #endif #endif