| 210 | }; |
| 211 | |
| 212 | FileWriter(const std::string &filename, const FingerprintFlag flag) |
| 213 | : FileWriter(std::filesystem::path(filename), flag) |
| 214 | { |
| 215 | } |
| 216 | |
| 217 | FileWriter(const std::filesystem::path &filepath_, const FingerprintFlag flag) |
| 218 | : filepath(filepath_), fingerprint(flag) |
nothing calls this directly
no test coverage detected