sapling/eden/fs/fuse/PollHandle.cpp
Victor Gao a477e9663f comment out unused parameters
Summary: This uses `clang-tidy` to comment out unused parameters (in functions, methods and lambdas) in fbcode. Cases that the tool failed to handle are fixed manually.

Reviewed By: igorsugak

Differential Revision: D5454343

fbshipit-source-id: 5dee339b4334e25e963891b519a5aa81fbf627b2
2017-07-21 15:01:05 -07:00

32 lines
718 B
C++

/*
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include "PollHandle.h"
namespace facebook {
namespace eden {
namespace fusell {
void PollHandle::Deleter::operator()(fuse_pollhandle* /*h*/) {
#if FUSE_MAJOR_VERSION >= 8
fuse_pollhandle_destroy(h);
#endif
}
PollHandle::PollHandle(fuse_pollhandle* h) : h_(h, PollHandle::Deleter()) {}
void PollHandle::notify() {
#if FUSE_MAJOR_VERSION >= 8
fuse_lowlevel_notify_poll(h_.get());
#endif
}
}
}
}