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 --- .../std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp') 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 1fd353d041f..41fb731a885 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 @@ -12,7 +12,7 @@ // enum class perm_options; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include #include #include -- cgit v1.2.3