| 304 | })); |
| 305 | |
| 306 | void BM_Utf8CodePointCount_String_AsciiTen(benchmark::State& state) { |
| 307 | for (auto s : state) { |
| 308 | benchmark::DoNotOptimize(Utf8CodePointCount("0123456789")); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | BENCHMARK(BM_Utf8CodePointCount_String_AsciiTen); |
| 313 |
nothing calls this directly
no test coverage detected