Skip to content

Commit

Permalink
adding clangformat lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JslYoon committed Feb 19, 2025
1 parent ba43e8c commit 004206c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/bliss/bench_alex.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ template <typename KEY_TYPE, typename VALUE_TYPE>
class BlissAlexIndex : public BlissIndex<KEY_TYPE, VALUE_TYPE> {
public:
alex::Alex<KEY_TYPE, VALUE_TYPE> _index;
BlissAlexIndex() : _index(){};
BlissAlexIndex() : _index() {};

void bulkload(
std::vector<std::pair<KEY_TYPE, VALUE_TYPE>> values) override {
Expand Down
3 changes: 3 additions & 0 deletions src/bliss_bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "bliss/bench_alex.h"
#include "bliss/bench_art.h"
#include "bliss/bench_btree.h"
#include "bliss/bench_csbtree.h"
#include "bliss/bench_leveldb.h"
#include "bliss/bench_lipp.h"
#include "bliss/bench_pgm.h"
Expand Down Expand Up @@ -182,6 +183,8 @@ int main(int argc, char *argv[]) {
index.reset(new bliss::BlissPGMIndex<key_type, value_type>());
} else if (config.index == "leveldb") {
index.reset(new bliss::BlissLevelDBIndex<key_type, value_type>());
} else if (config.index == "csbtree") {
index.reset(new bliss::BlissLevelDBIndex<key_type, value_type>());
} else {
spdlog::error(config.index + " not implemented yet", 1);
}
Expand Down

0 comments on commit 004206c

Please sign in to comment.