blob: 81ea9acd3a3e7786e5e037dade4a109688d42329 [file] [log] [blame]
#include <benchmark/benchmark.h>
static void BM_StringCreation(benchmark::State& state) {
while (state.KeepRunning())
std::string empty_string;
}
// Register the function as a benchmark
BENCHMARK(BM_StringCreation);