Skip to content

Commit 46ab2bf

Browse files
fix warning in clang tests
1 parent 0fc3349 commit 46ab2bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/EXTERNAL/libtatum/libtatum/tatum/util/tatum_strong_id.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ class StrongId {
198198
// after the function name (i.e. <>)
199199
friend bool operator== <>(const StrongId<tag,T,sentinel>& lhs, const StrongId<tag,T,sentinel>& rhs);
200200
friend bool operator!= <>(const StrongId<tag,T,sentinel>& lhs, const StrongId<tag,T,sentinel>& rhs);
201-
friend bool operator< <>(const StrongId<tag,T,sentinel>& lhs, const StrongId<tag,T,sentinel>& rhs);
201+
friend bool operator< <>(const StrongId<tag,T,sentinel>& lhs, const StrongId<tag,T,sentinel>& rhs) noexcept;
202202
private:
203203
T id_;
204204
};

0 commit comments

Comments
 (0)