collocatordb: remove class destroyer debugging
diff --git a/collocatordb.cc b/collocatordb.cc
index 89da1c6..b9eeb3a 100644
--- a/collocatordb.cc
+++ b/collocatordb.cc
@@ -152,8 +152,6 @@
: base_iterator_(base_iterator)
{}
- ~CollocatorIterator();
-
void setPrefix(char *prefix) {
memcpy(prefixc, prefix, sizeof(uint64_t));
}
@@ -220,7 +218,6 @@
public:
CollocatorDB(const char *db_name, bool read_only);
- ~CollocatorDB();
// public interface of CollocatorDB.
// All four functions return false
@@ -335,14 +332,6 @@
_one_slice = Slice(_one, sizeof(uint64_t));
}
- rocksdb::CollocatorIterator::~CollocatorIterator() {
- std::cout << "destroying itera\n";
- }
-
- rocksdb::CollocatorDB::~CollocatorDB() {
- std::cout << "destroying coll\n";
- }
-
void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
inc(encodeCollocation(w1, w2, dist));
}