Sign in
flutter
/
third_party
/
perfetto
/
2854a0a9cd1a270c0bf85c9deab91170077362a1
/
.
/
src
/
tracing
/
test
/
hello_world_benchmark.cc
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
);