libcxx: Rename last two .hpp files in libcxx to .h

Differential Revision: https://reviews.llvm.org/D66544

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@369597 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nico Weber
2019-08-21 22:38:38 +00:00
parent 2b0de5a74d
commit 4ef3309d94
10 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
#ifndef TEST_BITMASK_TYPE_HPP
#define TEST_BITMASK_TYPE_HPP
#ifndef TEST_BITMASK_TYPE_H
#define TEST_BITMASK_TYPE_H
#include <type_traits>
#include <cassert>

View File

@@ -16,7 +16,7 @@
#include <type_traits>
#include <cassert>
#include "check_bitmask_types.hpp"
#include "check_bitmask_types.h"
#include "test_macros.h"

View File

@@ -18,7 +18,7 @@
#include <sys/stat.h>
#include "test_macros.h"
#include "check_bitmask_types.hpp"
#include "check_bitmask_types.h"
constexpr fs::directory_options ME(int val) { return static_cast<fs::directory_options>(val); }

View File

@@ -18,7 +18,7 @@
#include <sys/stat.h>
#include "test_macros.h"
#include "check_bitmask_types.hpp"
#include "check_bitmask_types.h"
constexpr fs::perm_options ME(int val) {

View File

@@ -18,7 +18,7 @@
#include <sys/stat.h>
#include "test_macros.h"
#include "check_bitmask_types.hpp"
#include "check_bitmask_types.h"
constexpr fs::perms ME(int val) { return static_cast<fs::perms>(val); }

View File

@@ -15,7 +15,7 @@
#include <cassert>
#include "test_macros.h"
#include "pointer_comparison_test_helper.hpp"
#include "pointer_comparison_test_helper.h"
int main(int, char**)
{

View File

@@ -15,7 +15,7 @@
#include <cassert>
#include "test_macros.h"
#include "pointer_comparison_test_helper.hpp"
#include "pointer_comparison_test_helper.h"
int main(int, char**)
{

View File

@@ -15,7 +15,7 @@
#include <cassert>
#include "test_macros.h"
#include "pointer_comparison_test_helper.hpp"
#include "pointer_comparison_test_helper.h"
int main(int, char**)
{

View File

@@ -15,7 +15,7 @@
#include <cassert>
#include "test_macros.h"
#include "pointer_comparison_test_helper.hpp"
#include "pointer_comparison_test_helper.h"
int main(int, char**)
{

View File

@@ -1,5 +1,5 @@
#ifndef POINTER_COMPARISON_TEST_HELPER_HPP
#define POINTER_COMPARISON_TEST_HELPER_HPP
#ifndef POINTER_COMPARISON_TEST_HELPER_H
#define POINTER_COMPARISON_TEST_HELPER_H
#include <vector>
#include <memory>
@@ -36,4 +36,4 @@ void do_pointer_comparison_test() {
}
}
#endif // POINTER_COMPARISON_TEST_HELPER_HPP
#endif // POINTER_COMPARISON_TEST_HELPER_H