| 100 | #endif // __cpp_lib_clamp |
| 101 | |
| 102 | void unreachableCode_std_terminate(int &x) |
| 103 | { |
| 104 | std::terminate(); |
| 105 | // cppcheck-suppress unreachableCode |
| 106 | x=42; |
| 107 | } |
| 108 | |
| 109 | bool ignoredReturnValue_std_filesystem_exists(const std::filesystem::path &path, std::error_code& ec) |
| 110 | { |
nothing calls this directly
no test coverage detected