From 03096267d63ffc62898be94f454171d93bf5f845 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 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@298566 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../c1xx_broken_nullptr_conversion_operator.pass.cpp | 4 ++-- test/support/test_workarounds.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp b/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp index ade241f0d..250d06d2b 100644 --- a/test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp +++ b/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/test/support/test_workarounds.h b/test/support/test_workarounds.h index ec77a142f..affdd1025 100644 --- a/test/support/test_workarounds.h +++ b/test/support/test_workarounds.h @@ -1,5 +1,5 @@ // -*- C++ -*- -//===---------------------------- test_macros.h ---------------------------===// +//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure //