Skip to content

Commit

Permalink
Add noexcept for metrics::Tag move constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
toregge committed Jul 3, 2022
1 parent 6760568 commit bb9b57a
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 bb9b57a

Please sign in to comment.