sapling/eden/fs/fuse/FileHandleBase.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

35 lines
773 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 "FileHandleBase.h"
using namespace folly;
namespace facebook {
namespace eden {
namespace fusell {
FileHandleBase::~FileHandleBase() {}
folly::Future<FileHandleBase::Ioctl> FileHandleBase::ioctl(
int /*cmd*/,
const void* /*arg*/,
folly::ByteRange /*inputData*/,
size_t /*outputSize*/) {
FUSELL_NOT_IMPL();
}
folly::Future<unsigned> FileHandleBase::poll(
std::unique_ptr<PollHandle> /*ph*/) {
FUSELL_NOT_IMPL();
}
}
}
}