aboutsummaryrefslogtreecommitdiff
path: root/test/std/language.support/support.types/nullptr_t.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/language.support/support.types/nullptr_t.pass.cpp')
-rw-r--r--test/std/language.support/support.types/nullptr_t.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/language.support/support.types/nullptr_t.pass.cpp b/test/std/language.support/support.types/nullptr_t.pass.cpp
index 2d0ed7410590..ffa0c90d4d86 100644
--- a/test/std/language.support/support.types/nullptr_t.pass.cpp
+++ b/test/std/language.support/support.types/nullptr_t.pass.cpp
@@ -91,7 +91,7 @@ int main()
{
#ifdef _LIBCPP_HAS_NO_NULLPTR
static_assert(!has_less<std::nullptr_t>::value, "");
- // FIXME: our c++03 nullptr emulation still allows for comparisons
+ // FIXME: our C++03 nullptr emulation still allows for comparisons
// with other pointer types by way of the conversion operator.
//static_assert(!has_less<void*>::value, "");
#else