Fix MSCV compilation broken by r289040

I wanted to use the "not" keyword to make sure it does not get lost in between
other checks. MSVC does not like that.

llvm-svn: 289041
This commit is contained in:
Pavel Labath 2016-12-08 11:45:38 +00:00
parent fefefeb7f6
commit 82b95acfbe
1 changed files with 4 additions and 4 deletions

View File

@ -28,10 +28,10 @@ using detail::uses_format_member;
static_assert(uses_format_member<Format>::value, "");
static_assert(uses_format_member<Format &>::value, "");
static_assert(uses_format_member<Format &&>::value, "");
static_assert(not uses_format_member<const Format>::value, "");
static_assert(not uses_format_member<const Format &>::value, "");
static_assert(not uses_format_member<const volatile Format>::value, "");
static_assert(not uses_format_member<const volatile Format &>::value, "");
static_assert(!uses_format_member<const Format>::value, "");
static_assert(!uses_format_member<const Format &>::value, "");
static_assert(!uses_format_member<const volatile Format>::value, "");
static_assert(!uses_format_member<const volatile Format &>::value, "");
static_assert(uses_format_member<ConstFormat>::value, "");
static_assert(uses_format_member<ConstFormat &>::value, "");