From 3ca624efb0bfeb365011ae1372525bec75e635cf Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sat, 13 Jan 2024 11:45:38 +0000 Subject: [PATCH] Changed case of template constants --- include/etl/bloom_filter.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/etl/bloom_filter.h b/include/etl/bloom_filter.h index 711a151b..5d35128c 100644 --- a/include/etl/bloom_filter.h +++ b/include/etl/bloom_filter.h @@ -62,17 +62,17 @@ namespace etl /// An implementation of a bloom filter. /// Allows up to three hashes to be defined. /// Hashes must support the () operator and define 'argument_type'. - ///\tparam DESIRED_WIDTH The desired number of hash results that can be stored. Rounded up to best fit the underlying bitset. + ///\tparam Desired_Width The desired number of hash results that can be stored. Rounded up to best fit the underlying bitset. ///\tparam THash1 The first hash generator class. ///\tparam THash2 The second hash generator class. If omitted, uses the null hash. ///\tparam THash3 The third hash generator class. If omitted, uses the null hash. /// The hash classes must define argument_type. ///\ingroup bloom_filter //*************************************************************************** - template + template class bloom_filter { private: @@ -85,7 +85,7 @@ namespace etl enum { // Make the most efficient use of the bitset. - WIDTH = etl::bitset::ALLOCATED_BITS + WIDTH = etl::bitset::Allocated_Bits }; //***************************************************************************