diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-27 22:52:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-15 10:59:34 +0200 |
| commit | 01218f1af7844a86cedcb3ef41365cb51209c2b3 (patch) | |
| tree | 07dfba126c868ed7cce7566ae20d4d159ff6bb50 /src/verify.h | |
| parent | 727d2d499e5be925ef1b4076073aa8d2916b30ed (diff) | |
Add process_filename parameter to note_to_string().
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h index 081007c9..c0476ec9 100644 --- a/src/verify.h +++ b/src/verify.h @@ -691,7 +691,7 @@ VerifyResult verify( boost::optional<boost::filesystem::path> xsd_dtd_directory = boost::optional<boost::filesystem::path>() ); -std::string note_to_string (dcp::VerificationNote note); +std::string note_to_string(dcp::VerificationNote note, std::function<std::string (std::string)> process_filename = [](std::string s) { return s; }); bool operator== (dcp::VerificationNote const& a, dcp::VerificationNote const& b); bool operator!=(dcp::VerificationNote const& a, dcp::VerificationNote const& b); |
