summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h26
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);
}