c_src/bloom_filter.hpp:74]: (warning) 'operator=' should check for assignment to self to avoid problems with dynamic memory.
Source code is
bloom_filter& operator = (const bloom_filter& filter)
{
salt_count_ = filter.salt_count_;
table_size_ = filter.table_size_;
There should be a check first for this != &filter.