| 51 | } // namespace benchmark |
| 52 | |
| 53 | int main() { |
| 54 | using namespace boost::ut; |
| 55 | using namespace benchmark; |
| 56 | |
| 57 | "string creation"_benchmark = [] { |
| 58 | std::string created_string{"hello"}; |
| 59 | do_not_optimize(created_string); |
| 60 | }; |
| 61 | } |
nothing calls this directly
no test coverage detected