Skip to content

Commit 5f6eb9b

Browse files
added missing serde parameter
1 parent a4d8a46 commit 5f6eb9b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

kll/include/kll_sketch.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ class kll_sketch {
187187
* @param other sketch of a different type
188188
* @param allocator instance of an Allocator
189189
*/
190-
template<typename TT, typename CC, typename AA>
191-
explicit kll_sketch(const kll_sketch<TT, CC, AA> & other, const A& allocator = A());
190+
template<typename TT, typename CC, typename SS, typename AA>
191+
explicit kll_sketch(const kll_sketch<TT, CC, SS, AA>& other, const A& allocator = A());
192192

193193
/**
194194
* Updates this sketch with the given data item.

kll/include/kll_sketch_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ kll_sketch<T, C, S, A>::~kll_sketch() {
149149
}
150150

151151
template<typename T, typename C, typename S, typename A>
152-
template<typename TT, typename CC, typename AA>
153-
kll_sketch<T, C, S, A>::kll_sketch(const kll_sketch<TT, CC, AA>& other, const A& allocator):
152+
template<typename TT, typename CC, typename SS, typename AA>
153+
kll_sketch<T, C, S, A>::kll_sketch(const kll_sketch<TT, CC, SS, AA>& other, const A& allocator):
154154
allocator_(allocator),
155155
k_(other.get_k()),
156156
m_(DEFAULT_M),

0 commit comments

Comments
 (0)