Bug 1025143 - Fix a compilation error in TestTypedEnum.cpp with clang-cl; r=bjacob

This makes the code more correct since if we don't have constexpr
support in the compiler, the CastableTypedEnumResult type would
actually not be a literal type, so we should not assert that here.
This commit is contained in:
Ehsan Akhgari 2014-06-13 15:22:16 -04:00
Родитель 5cfffe50d0
Коммит 11ef71dec3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@
# endif
#endif
#ifdef MOZ_HAVE_IS_LITERAL
#if defined(MOZ_HAVE_IS_LITERAL) && defined(MOZ_HAVE_CXX11_CONSTEXPR)
#include <type_traits>
template<typename T>
void