Apply clang-format to fdbserver/workloads/ThroughputQuota.actor.cpp

This commit is contained in:
sfc-gh-tclinkenbeard 2023-06-30 13:20:47 -07:00
parent b7bd6fc602
commit 6fbd6ef35c
1 changed files with 1 additions and 3 deletions

View File

@ -60,9 +60,7 @@ public:
totalQuotaInPages = getOption(options, "totalQuotaInPages"_sr, 0);
}
Future<Void> setup(Database const& cx) override {
return clientId ? Void() : setup(this, cx);
}
Future<Void> setup(Database const& cx) override { return clientId ? Void() : setup(this, cx); }
Future<Void> start(Database const& cx) override { return Void(); }
Future<bool> check(Database const& cx) override { return true; }
void getMetrics(std::vector<PerfMetric>& m) override {}