Fix: CATCH_NOEXCEPT redefined warning

We should check whether CATCH_NOEXCEPT was defined not CATCH_NO_EXCEPT.
This commit is contained in:
Adam Strzelecki 2014-04-22 18:16:50 +02:00
parent 878c257de7
commit 0c787f94d0
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@
# define CATCH_NOEXCEPT_IS(x) noexcept(x) # define CATCH_NOEXCEPT_IS(x) noexcept(x)
# endif # endif
#endif #endif
#ifndef CATCH_NO_EXCEPT #ifndef CATCH_NOEXCEPT
# define CATCH_NOEXCEPT throw() # define CATCH_NOEXCEPT throw()
# define CATCH_NOEXCEPT_IS(x) # define CATCH_NOEXCEPT_IS(x)
#endif #endif