diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 22:38:38 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 22:38:38 +0000 |
| commit | 0f3efc4aab9748ea4791ed47530a9ea7174b97e3 (patch) | |
| tree | 9fb5364af8362be1774e9255352609f2b8d2e1b5 /libcxx/test/std/input.output/filesystems/fs.enum | |
| parent | d9a81ccf05925e25df17cf64f7636ae78cd99d3d (diff) | |
| download | bcm5719-llvm-0f3efc4aab9748ea4791ed47530a9ea7174b97e3.tar.gz bcm5719-llvm-0f3efc4aab9748ea4791ed47530a9ea7174b97e3.zip | |
libcxx: Rename last two .hpp files in libcxx to .h
Differential Revision: https://reviews.llvm.org/D66544
llvm-svn: 369597
Diffstat (limited to 'libcxx/test/std/input.output/filesystems/fs.enum')
| -rw-r--r-- | libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.h (renamed from libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.hpp) | 4 | ||||
| -rw-r--r-- | libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp | 2 | ||||
| -rw-r--r-- | libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp | 2 | ||||
| -rw-r--r-- | libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp | 2 | ||||
| -rw-r--r-- | libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.hpp b/libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.h index 77b136f3fca..d95378dd2c3 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.hpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/check_bitmask_types.h @@ -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> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp index 7bc129f20a2..df83d4eb60e 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp @@ -16,7 +16,7 @@ #include <type_traits> #include <cassert> -#include "check_bitmask_types.hpp" +#include "check_bitmask_types.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp index 44e1c63baa3..cd5c5e86b38 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp @@ -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); } diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp index 41fb731a885..138ebd0df20 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp @@ -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) { diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp index a9613f2e880..ae0e49b782e 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp @@ -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); } |

