Skip to content

Commit

Permalink
Fixed spelling mistake in macros
Browse files Browse the repository at this point in the history
  • Loading branch information
akrzemi1 committed Nov 7, 2017
1 parent e9e452a commit 255e72f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/boost/optional/detail/optional_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@
#endif


#ifdef BOOST_OPTIONAL_CONFIG_NO_DIRECT_STORAE_SPEC
# define BOOST_OPTIONAL_DETAIL_NO_DIRECT_STORAE_SPEC
#ifdef BOOST_OPTIONAL_CONFIG_NO_DIRECT_STORAGE_SPEC
# define BOOST_OPTIONAL_DETAIL_NO_DIRECT_STORAGE_SPEC
#endif


Expand Down
2 changes: 1 addition & 1 deletion include/boost/optional/optional.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ struct optional_uses_direct_storage_for
} // namespace optional_config


#ifndef BOOST_OPTIONAL_DETAIL_NO_DIRECT_STORAE_SPEC
#ifndef BOOST_OPTIONAL_DETAIL_NO_DIRECT_STORAGE_SPEC
# define BOOST_OPTIONAL_BASE_TYPE(T) boost::conditional< optional_config::optional_uses_direct_storage_for<T>::value, \
optional_detail::tc_optional_base<T>, \
optional_detail::optional_base<T> \
Expand Down

0 comments on commit 255e72f

Please sign in to comment.