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/class.path/path.member/path.construct/move.pass.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp') diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp index 494a77c3c86..a1a07fb2b06 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp @@ -14,12 +14,12 @@ // path(path&&) noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include #include #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { -- cgit v1.2.3