Skip to content

Commit

Permalink
[RocksDB] Fix warning about "start_" being uninitialized when used.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtl1979 committed Mar 27, 2024
1 parent 8c1ee69 commit e9429b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/rocksdb/tools/db_bench_tool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,7 @@ class CombinedStats;
class Stats {
private:
int id_;
uint64_t start_;
uint64_t start_ = 0;
uint64_t finish_;
double seconds_;
uint64_t done_;
Expand Down

0 comments on commit e9429b0

Please sign in to comment.