Sign in
flutter
/
third_party
/
perfetto
/
65b28a1780b6edcf2410e7e8d3bcd04aabc57b29
/
.
/
src
/
tracing
/
test
/
hello_world_benchmark.cc
blob: c554de9435dec2c0a0fa9225e897fb969b4c33e3 [
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
);