diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 01:59:12 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 01:59:12 +0000 |
commit | f938755a331206f017eaa5e8ab6a122b162e8de3 (patch) | |
tree | 17d28a4e4f5cda6b4e6720166f5872ca255dd4d2 /libcxx/benchmarks/vector_operations.bench.cpp | |
parent | 8d18384809957cc923752e10a86adab129e3df48 (diff) | |
download | bcm5719-llvm-f938755a331206f017eaa5e8ab6a122b162e8de3.tar.gz bcm5719-llvm-f938755a331206f017eaa5e8ab6a122b162e8de3.zip |
libcxx: Rename .hpp files in libcxx/benchmarks to .h
LLVM uses .h as its extension for header files.
Differential Revision: https://reviews.llvm.org/D66509
llvm-svn: 369487
Diffstat (limited to 'libcxx/benchmarks/vector_operations.bench.cpp')
-rw-r--r-- | libcxx/benchmarks/vector_operations.bench.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/benchmarks/vector_operations.bench.cpp b/libcxx/benchmarks/vector_operations.bench.cpp index c41259eaac3..70a317df9fb 100644 --- a/libcxx/benchmarks/vector_operations.bench.cpp +++ b/libcxx/benchmarks/vector_operations.bench.cpp @@ -6,8 +6,8 @@ #include "benchmark/benchmark.h" -#include "ContainerBenchmarks.hpp" -#include "GenerateInput.hpp" +#include "ContainerBenchmarks.h" +#include "GenerateInput.h" using namespace ContainerBenchmarks; |