Skip to content

Commit

Permalink
noexcept specifier in function signature does not work correctly for …
Browse files Browse the repository at this point in the history
…MSVC compiler (#145)
  • Loading branch information
acki-m authored Mar 26, 2018
1 parent aad43a9 commit e338d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rttr/detail/base/core_prerequisites.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ namespace rttr
# define RTTR_NO_CXX11_CONSTEXPR
# define RTTR_NO_CXX14_CONSTEXPR
# endif
# if !defined(_HAS_CXX17) || _HAS_CXX17 == 0
# if !defined(_MSVC_LANG) || (_MSVC_LANG < 201703L)
# define RTTR_NO_CXX17_NOEXCEPT_FUNC_TYPE
# endif
#endif
Expand Down

0 comments on commit e338d9a

Please sign in to comment.