diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-19 02:09:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-19 02:09:53 +0100 |
| commit | 5cb84b215e47033ed23b3a7ccfb3359f333ba692 (patch) | |
| tree | 26ab2118760b29a95da69ea0a86dcbe225defbb4 /src | |
| parent | e1fcd0fa3999e2352e388933ad7c0aa320263e09 (diff) | |
_line should be optional.
Diffstat (limited to 'src')
| -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 2f9b244e..cb3d03b2 100644 --- a/src/verify.h +++ b/src/verify.h @@ -264,7 +264,7 @@ private: /** Path of file containing the error, if applicable */ boost::optional<boost::filesystem::path> _file; /** Error line number within _file, if applicable */ - uint64_t _line; + boost::optional<uint64_t> _line; }; std::vector<VerificationNote> verify ( |
