Skip to content

Commit

Permalink
Merge pull request #23328 from vespa-engine/toregge/add-noexcept-spec…
Browse files Browse the repository at this point in the history
…ifier-pass-2

Add noexcept for metrics::Tag move constructor.
  • Loading branch information
baldersheim authored Jul 3, 2022
2 parents b7c574b + bb9b57a commit eed883e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metrics/src/vespa/metrics/metric.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct Tag
Tag(vespalib::stringref k, vespalib::stringref v);
Tag(const Tag &) noexcept;
Tag & operator = (const Tag &);
Tag(Tag &&) = default;
Tag(Tag &&) noexcept = default;
Tag & operator = (Tag &&) = default;
~Tag();

Expand Down

0 comments on commit eed883e

Please sign in to comment.