From 62d24d3c7707bcc52c6615586d83b2e8cbc768cc Mon Sep 17 00:00:00 2001 From: clanmills Date: Sat, 12 Aug 2017 14:53:10 +0100 Subject: [PATCH] Correction to previous commit. --- include/exiv2/config.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/include/exiv2/config.h b/include/exiv2/config.h index 748e7bd6..67eb8932 100644 --- a/include/exiv2/config.h +++ b/include/exiv2/config.h @@ -4,15 +4,16 @@ #ifndef _CONFIG_H_ #define _CONFIG_H_ -#ifndef CPLUSPLUS11 -#define CPLUSPLUS11 201103L -#endif #ifdef __cplusplus -#if __cplusplus >= CPLUSPLUS11 -#ifndef EXV_USING_CPP_ELEVEN -#define EXV_USING_CPP_ELEVEN -#endif +# ifndef CPLUSPLUS11 +# define CPLUSPLUS11 201103L +# endif +# if __cplusplus >= CPLUSPLUS11 +# ifndef EXV_USING_CPP_ELEVEN +# define EXV_USING_CPP_ELEVEN +# endif +# endif #endif ///// Start of Visual Studio Support /////