summaryrefslogtreecommitdiff
path: root/db/wal_manager_test.cc
diff options
context:
space:
mode:
authorDavid Lai <dlai@fb.com>2018-02-22 09:37:17 -0800
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2018-02-22 09:44:23 -0800
commitf4a030ce81d3556f0e9f8f37c5125fc84638a0d9 (patch)
tree5be357d7b2bd43b29a6ff9957f5bbad977dcfa23 /db/wal_manager_test.cc
parentb092977643e5a37945afc67455a2ebd9e20ac236 (diff)
- comment out unused parameters
Reviewed By: everiq, igorsugak Differential Revision: D7046710 fbshipit-source-id: 8e10b1f1e2aecebbfb229c742e214db887e5a461
Diffstat (limited to 'db/wal_manager_test.cc')
-rw-r--r--db/wal_manager_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/wal_manager_test.cc b/db/wal_manager_test.cc
index fe54b84cb..224defe26 100644
--- a/db/wal_manager_test.cc
+++ b/db/wal_manager_test.cc
@@ -73,7 +73,7 @@ class WalManagerTest : public testing::Test {
}
// NOT thread safe
- void RollTheLog(bool archived) {
+ void RollTheLog(bool /*archived*/) {
current_log_number_++;
std::string fname = ArchivedLogFileName(dbname_, current_log_number_);
unique_ptr<WritableFile> file;