From: Eric Fiselier Date: Thu, 23 Mar 2017 00:48:59 +0000 (+0000) Subject: Address post-commit review comments regarding test_workarounds.h X-Git-Tag: llvmorg-5.0.0-rc1~9382 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=351d2c36efa40a9a3537273191383dfab3bb2b2d;p=platform%2Fupstream%2Fllvm.git Address post-commit review comments regarding test_workarounds.h llvm-svn: 298566 --- 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 //