summaryrefslogtreecommitdiff
path: root/test/support
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-03-23 00:48:59 +0000
committerEric Fiselier <eric@efcs.ca>2017-03-23 00:48:59 +0000
commit03096267d63ffc62898be94f454171d93bf5f845 (patch)
tree8278db1043bbb510ce5d107cfd42ba9cb7f7fecb /test/support
parent0da4cb892be645cf366eb7e3f267e647e5f77011 (diff)
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
Diffstat (limited to 'test/support')
-rw-r--r--test/support/test.workarounds/c1xx_broken_nullptr_conversion_operator.pass.cpp4
-rw-r--r--test/support/test_workarounds.h2
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 <type_traits>
+#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
//