Skip to content

Commit 942336e

Browse files
committed
Minor fixes
1 parent e88f9cb commit 942336e

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

ddsketch/include/ddsketch.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class DDSketch {
4141

4242
explicit DDSketch(const Mapping& index_mapping);
4343

44-
void update(const double&value, const double& count = 1.0);
44+
void update(const double& value, const double& count = 1.0);
4545

4646
template<store_concept OtherStore>
4747
void merge(const DDSketch<OtherStore, Mapping>& other);

ddsketch/include/ddsketch_impl.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,8 @@ string<A> DDSketch<Store, Mapping>::to_string() const {
254254
os << "### ddsketch summary:" << std::endl;
255255
os << " Index mapping " << std::endl;
256256
os << index_mapping.to_string();
257+
os << " Min indexable value : " << min_indexed_value << std::endl;
258+
os << " Max indexable value : " << max_indexed_value << std::endl;
257259
os << " Positive store " << std::endl;
258260
os << positive_store.to_string();
259261
os << " Negative store " << std::endl;

0 commit comments

Comments
 (0)