diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-04-01 00:27:34 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-01 23:43:00 +0200 |
| commit | a0814a2e44e56d0378c6a47ca9c741de5cfe6356 (patch) | |
| tree | 4deb871f14830d22d3ed5afe9ea69241a37db16b /src/verify.h | |
| parent | a82a17578812a41232d69ea10d88b19004418583 (diff) | |
Remove VerificationNote::note.tidy-verify
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/verify.h b/src/verify.h index 44bb94a6..cb9801ef 100644 --- a/src/verify.h +++ b/src/verify.h @@ -603,25 +603,12 @@ public: : _code(code) {} - VerificationNote(Code code, std::string note) - : _code(code) - { - _data[Data::NOTE] = note; - } - VerificationNote(Code code, boost::filesystem::path file) : _code(code) { _data[Data::FILE] = file; } - VerificationNote(Code code, std::string note, boost::filesystem::path file) - : _code(code) - { - _data[Data::NOTE] = note; - _data[Data::FILE] = file; - } - VerificationNote(Code code, boost::filesystem::path file, uint64_t line) : _code (code) { @@ -629,14 +616,6 @@ public: _data[Data::LINE] = line; } - VerificationNote(Code code, std::string note, boost::filesystem::path file, uint64_t line) - : _code (code) - { - _data[Data::NOTE] = note; - _data[Data::FILE] = file; - _data[Data::LINE] = line; - } - Type type() const; Code code () const { @@ -668,7 +647,6 @@ private: LINE, ///< error line number within the FILE LOAD_FONT_ID, MAIN_PICTURE_ACTIVE_AREA, - NOTE, ///< further information about the error OTHER_ASSET_ID, OTHER_DURATION, PKL_ID, @@ -695,10 +673,6 @@ private: } public: - boost::optional<std::string> note () const { - return data<std::string>(Data::NOTE); - } - boost::optional<boost::filesystem::path> file () const { return data<boost::filesystem::path>(Data::FILE); } |
