summaryrefslogtreecommitdiff
path: root/third-party
diff options
context:
space:
mode:
authorSagar Vemuri <svemuri@fb.com>2017-07-21 18:13:59 -0700
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2017-07-21 18:26:26 -0700
commit72502cf2270db7323d447cc7a504dbea251d432a (patch)
tree6c395059a3159181dc04485b795910fb3b18f419 /third-party
parent1d7048c5985e60be8e356663ec3cb6d020adb44d (diff)
Revert "comment out unused parameters"
Summary: This reverts the previous commit 1d7048c5985e60be8e356663ec3cb6d020adb44d, which broke the build. Did a `git revert 1d7048c`. Closes https://github.com/facebook/rocksdb/pull/2627 Differential Revision: D5476473 Pulled By: sagar0 fbshipit-source-id: 4756ff5c0dfc88c17eceb00e02c36176de728d06
Diffstat (limited to 'third-party')
-rw-r--r--third-party/fbson/FbsonDocument.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/fbson/FbsonDocument.h b/third-party/fbson/FbsonDocument.h
index fc7ca76ff..6fb8a93f1 100644
--- a/third-party/fbson/FbsonDocument.h
+++ b/third-party/fbson/FbsonDocument.h
@@ -355,7 +355,7 @@ class NumberValT : public FbsonValue {
unsigned int numPackedBytes() const { return sizeof(FbsonValue) + sizeof(T); }
// catch all unknow specialization of the template class
- bool setVal(T /*value*/) { return false; }
+ bool setVal(T value) { return false; }
private:
T num_;