From cc89063bff0f73ec7049a1dcb5d4688ae6806941 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 21 Aug 2019 00:14:12 +0000 Subject: libcxx: Rename .hpp files in libcxx/test/support to .h LLVM uses .h as its extension for header files. Files renamed using: for f in libcxx/test/support/*.hpp; do git mv $f ${f%.hpp}.h; done References to the files updated using: for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do a=$(basename $f); echo $a; rg -l $a libcxx | xargs sed -i '' "s/$a/${a%.hpp}.h/"; done HPP include guards updated manually using: for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do echo ${f%.hpp}.h ; done | xargs mvim Differential Revision: https://reviews.llvm.org/D66104 llvm-svn: 369481 --- .../filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp') diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp index 3fb20524a25..0bb7d256bdc 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp @@ -13,11 +13,11 @@ // bool remove(const path& p); // bool remove(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; -- cgit v1.2.3