Sign in
flutter
/
third_party
/
perfetto
/
4f27b668a7bb5ab9d03ebea2e43235c125eb4ebb
/
.
/
src
/
tracing
/
test
/
hello_world_benchmark.cc
blob: c554de9435dec2c0a0fa9225e897fb969b4c33e3 [
file
]
#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
);