Changeset 1609
- Timestamp:
- Feb 5, 2023, 11:30:10 PM (8 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.release_year
r1608 r1609 1 202 01 2023 -
trunk/lib/Commitment.h
r1515 r1609 88 88 struct GreaterRevision 89 89 { 90 inline bool operator()(const Commitment& lhs, const Commitment& rhs) 90 inline bool operator()(const Commitment& lhs, const Commitment& rhs) const 91 91 { return lhs.revision()>rhs.revision(); } 92 92 }; … … 94 94 struct LessRevision 95 95 { 96 inline bool operator()(const Commitment& lhs, const Commitment& rhs) 96 inline bool operator()(const Commitment& lhs, const Commitment& rhs) const 97 97 { return lhs.revision()<rhs.revision(); } 98 98 }; -
trunk/lib/Configuration.cc
r1515 r1609 375 375 image_format(rhs); 376 376 } 377 catch (std::runtime_error e) {377 catch (std::runtime_error& e) { 378 378 throw Config_error(line, 379 379 "unknown format: " + rhs + "\n" + e.what()); … … 384 384 image_anchor_format(rhs); 385 385 } 386 catch (std::runtime_error e) {386 catch (std::runtime_error& e) { 387 387 throw Config_error(line, 388 388 "unknown format: " + rhs + "\n" + e.what()); -
trunk/lib/CopyrightStats.cc
r1551 r1609 126 126 return rev; 127 127 } 128 catch (yat::utility::runtime_error e) {128 catch (yat::utility::runtime_error& e) { 129 129 return 0; 130 130 }
Note: See TracChangeset
for help on using the changeset viewer.