mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 06:00:51 +00:00
Parameter naming
This commit is contained in:
@@ -89,8 +89,8 @@ public:
|
||||
iterator() : db_(nullptr), prefix_(), it_(nullptr) {}
|
||||
|
||||
iterator(rocksdb::DB* db, const std::string& prefix,
|
||||
std::unique_ptr<rocksdb::Iterator> iter)
|
||||
: db_(db), prefix_(prefix), it_(std::move(iter))
|
||||
std::unique_ptr<rocksdb::Iterator> iterator)
|
||||
: db_(db), prefix_(prefix), it_(std::move(iterator))
|
||||
{
|
||||
check_valid();
|
||||
}
|
||||
@@ -214,9 +214,10 @@ public:
|
||||
}
|
||||
|
||||
size_t erase(const key_type& key) {
|
||||
static_cast<void>(key);
|
||||
// @todo
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user