You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "benchmark/benchmark.h"
|
|
#include "llvm/Support/YAMLTraits.h"
|
|
|
|
static void BM_YAMLDummyIsNumeric(benchmark::State& state) {
|
|
std::string x = "hello";
|
|
for (auto _ : state) {
|
|
std::string copy(x);
|
|
llvm::yaml::isNumeric(copy);
|
|
}
|
|
}
|
|
BENCHMARK(BM_YAMLDummyIsNumeric);
|
|
|
|
BENCHMARK_MAIN();
|