Skip to content

Commit 90f0d47

Browse files
committed
Fix trailing semicolon
1 parent 98f3ac8 commit 90f0d47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/graphqlservice/internal/SortedMap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ constexpr std::pair<Iterator, Iterator> find_sorted_map_key(
4343
[](sorted_map_key<K, V> lhs, sorted_map_key<K, V> rhs) noexcept {
4444
return Compare {}(lhs.key, rhs.key);
4545
});
46-
};
46+
}
4747

4848
template <class K, class V, class Compare = std::less<K>>
4949
class sorted_map

0 commit comments

Comments
 (0)