Hi Jonathan,
Yes. It indeed is PR10087. Both fixes worked.
Thanks!
Ryuta
Hi Jonathan,
Yes. It indeed is PR10087. Both fixes worked.
Thanks!
Ryuta
If this crops up for you again, another way to fix this is to disable noexcept in <__config>:
#if 0 //(__has_feature(cxx_noexcept))
# define _NOEXCEPT noexcept
# define _NOEXCEPT_(x) noexcept(x)
#else
# define _NOEXCEPT throw()
# define _NOEXCEPT_(x)
#endif
Hopefully this will be fixed soon. I've reassigned the bug to clang:
http://llvm.org/bugs/show_bug.cgi?id=10087
Howard