From 1985bb3c7abed940e91ad816504ef08a18c3b7c1 Mon Sep 17 00:00:00 2001 From: Explorer09 Date: Thu, 8 Mar 2018 09:53:24 +0800 Subject: [PATCH] scanner: correct comments about __STDC_LIMIT_MACROS. No code changes. Signed-off-by: Kang-Che Sung --- src/flexint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flexint.h b/src/flexint.h index 43bb3a827..13f880926 100644 --- a/src/flexint.h +++ b/src/flexint.h @@ -7,8 +7,8 @@ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L -/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, - * if you want the limit (max/min) macros for int types. +/* C++ systems might need __STDC_LIMIT_MACROS defined before including + * , if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1