From 351d2c36efa40a9a3537273191383dfab3bb2b2d Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Thu, 23 Mar 2017 00:48:59 +0000 Subject: [PATCH] Address post-commit review comments regarding test_workarounds.h llvm-svn: 298566 --- .../test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp | 4 ++-- libcxx/test/support/test_workarounds.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libcxx/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp b/libcxx/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp index ade241f..250d06d 100644 --- a/libcxx/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp +++ b/libcxx/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp @@ -11,10 +11,10 @@ // Verify TEST_WORKAROUND_C1XX_BROKEN_NULLPTR_CONVERSION_OPERATOR. -#include "test_workarounds.h" - #include +#include "test_workarounds.h" + struct ConvertsToNullptr { using DestType = decltype(nullptr); operator DestType() const { return nullptr; } diff --git a/libcxx/test/support/test_workarounds.h b/libcxx/test/support/test_workarounds.h index ec77a14..affdd10 100644 --- a/libcxx/test/support/test_workarounds.h +++ b/libcxx/test/support/test_workarounds.h @@ -1,5 +1,5 @@ // -*- C++ -*- -//===---------------------------- test_macros.h ---------------------------===// +//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // -- 2.7.4