1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add sprout::optional

This commit is contained in:
bolero-MURAKAMI 2012-10-22 23:10:11 +09:00
parent 9b9956f810
commit 8cb432dee1
15 changed files with 574 additions and 81 deletions

View file

@ -0,0 +1,20 @@
#ifndef SPROUT_CONFIG_COMPILER_CXX11_HPP
#define SPROUT_CONFIG_COMPILER_CXX11_HPP
#ifdef SPROUT_NO_CONSTEXPR
# define SPROUT_NO_CXX11_CONSTEXPR
#endif
#ifdef SPROUT_NO_NOEXCEPT
# define SPROUT_NO_CXX11_CNOEXCEPT
#endif
#ifdef SPROUT_NO_TEMPLATE_ALIASES
# define SPROUT_NO_CXX11_CTEMPLATE_ALIASES
#endif
#ifdef SPROUT_NO_USER_DEFINED_LITERALS
# define SPROUT_NO_CXX11_CUSER_DEFINED_LITERALS
#endif
#ifdef SPROUT_NO_DELEGATING_CONSTRUCTORS
# define SPROUT_NO_CXX11_CDELEGATING_CONSTRUCTORS
#endif
#endif // #ifndef SPROUT_CONFIG_COMPILER_CXX11_HPP