Revert last commit and add "unused" attribute to suppress warning

main
kailiu 11 years ago
parent bc9b488e92
commit 0e24f97b9f
  1. 3
      db/db_test.cc

@ -2596,7 +2596,6 @@ class ChangeFilter : public CompactionFilter {
const Slice& value, std::string* new_value, const Slice& value, std::string* new_value,
bool* value_changed) const override { bool* value_changed) const override {
assert(argv_ == 100); assert(argv_ == 100);
argv_ = argv_ + 0;
assert(new_value != nullptr); assert(new_value != nullptr);
*new_value = NEW_VALUE; *new_value = NEW_VALUE;
*value_changed = true; *value_changed = true;
@ -2608,7 +2607,7 @@ class ChangeFilter : public CompactionFilter {
} }
private: private:
const int argv_; const int __attribute__((unused)) argv_;
}; };
class KeepFilterFactory : public CompactionFilterFactory { class KeepFilterFactory : public CompactionFilterFactory {

Loading…
Cancel
Save