Fixing up some accidental checks that were using #ifdef when instead should have

been using just #if to define the AVALIABLE macro.
This commit is contained in:
Steve Gates
2014-06-17 11:55:04 -07:00
parent ca118c5869
commit 35c34b7368
4 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ http://www.boost.org/LICENSE_1_0.txt)
# define BOOST_PLAT_WINDOWS_DESKTOP BOOST_VERSION_NUMBER_AVAILABLE
#endif
#ifdef BOOST_PLAT_WINDOWS_DESKTOP
#if BOOST_PLAT_WINDOWS_DESKTOP
# define BOOST_PLAT_WINDOWS_DESKTOP_AVALIABLE
# include <boost/predef/detail/platform_detected.h>
#endif

View File

@ -29,7 +29,7 @@ http://www.boost.org/LICENSE_1_0.txt)
# define BOOST_PLAT_WINDOWS_PHONE BOOST_VERSION_NUMBER_AVAILABLE
#endif
#ifdef BOOST_PLAT_WINDOWS_PHONE
#if BOOST_PLAT_WINDOWS_PHONE
# define BOOST_PLAT_WINDOWS_PHONE_AVALIABLE
# include <boost/predef/detail/platform_detected.h>
#endif

View File

@ -31,7 +31,7 @@ http://www.boost.org/LICENSE_1_0.txt)
# define BOOST_PLAT_WINDOWS_RUNTIME BOOST_VERSION_NUMBER_AVAILABLE
#endif
#ifdef BOOST_PLAT_WINDOWS_RUNTIME
#if BOOST_PLAT_WINDOWS_RUNTIME
# define BOOST_PLAT_WINDOWS_RUNTIME_AVALIABLE
# include <boost/predef/detail/platform_detected.h>
#endif

View File

@ -29,7 +29,7 @@ http://www.boost.org/LICENSE_1_0.txt)
# define BOOST_PLAT_WINDOWS_STORE BOOST_VERSION_NUMBER_AVAILABLE
#endif
#ifdef BOOST_PLAT_WINDOWS_STORE
#if BOOST_PLAT_WINDOWS_STORE
# define BOOST_PLAT_WINDOWS_STORE_AVALIABLE
# include <boost/predef/detail/platform_detected.h>
#endif