File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,7 @@ class bloom_filter_alloc {
521
521
* @param other A Bloom Filter to check for compatibility with this one
522
522
* @return True if the filters are compatible, otherwise false
523
523
*/
524
- bool is_compatible (const bloom_filter_alloc& other) const ;
524
+ bool is_compatible (const bloom_filter_alloc& other) const ;
525
525
526
526
/* *
527
527
* @brief Checks if the Bloom Filter is read-only.
Original file line number Diff line number Diff line change 20
20
#ifndef _BLOOM_FILTER_IMPL_HPP_
21
21
#define _BLOOM_FILTER_IMPL_HPP_
22
22
23
+ #include < algorithm>
23
24
#include < memory>
24
25
#include < sstream>
25
26
#include < vector>
@@ -904,4 +905,4 @@ string<A> bloom_filter_alloc<A>::to_string(bool print_filter) const {
904
905
905
906
} // namespace datasketches
906
907
907
- #endif // _BLOOM_FILTER_IMPL_HPP_
908
+ #endif // _BLOOM_FILTER_IMPL_HPP_
Original file line number Diff line number Diff line change 20
20
#ifndef _TDIGEST_IMPL_HPP_
21
21
#define _TDIGEST_IMPL_HPP_
22
22
23
+ #include < algorithm>
23
24
#include < cmath>
24
25
#include < sstream>
25
26
You can’t perform that action at this time.
0 commit comments