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:
parent
9b9956f810
commit
8cb432dee1
15 changed files with 574 additions and 81 deletions
20
sprout/config/compiler/cxx11.hpp
Normal file
20
sprout/config/compiler/cxx11.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue