From e189d6559ea3c6b97fde85ec373c5a9bf6508ac6 Mon Sep 17 00:00:00 2001 From: Jinhao Date: Tue, 8 Dec 2015 00:42:07 +0800 Subject: [PATCH] remove warning for preprocessor --- include/nana/config.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/nana/config.hpp b/include/nana/config.hpp index acef5d8c..e97c70f6 100644 --- a/include/nana/config.hpp +++ b/include/nana/config.hpp @@ -117,7 +117,7 @@ //#define NANA_ENABLE_PNG //! //#define USE_LIBPNG_FROM_OS // Un-Comment it to use libpng from operating system. #if defined(NANA_ENABLE_PNG) - #if not defined(USE_LIBPNG_FROM_OS) + #if !defined(USE_LIBPNG_FROM_OS) #define NANA_LIBPNG #endif #endif @@ -129,7 +129,7 @@ //#define NANA_ENABLE_JPEG //! //#define USE_LIBJPEG_FROM_OS // Un-Comment it to use libjpeg from operating system. #if defined(NANA_ENABLE_JPEG) - #if not defined(USE_LIBJPEG_FROM_OS) + #if !defined(USE_LIBJPEG_FROM_OS) #define NANA_LIBJPEG #endif #endif