sapling/eden/fs/fuse/FileHandleBase.cpp
Adam Simpkins bfcf4c574a remove the fusell namespace
Summary: Move everything in the `facebook::eden::fusell` namespace to `facebook::eden`

Reviewed By: chadaustin

Differential Revision: D7314458

fbshipit-source-id: db56d3e5fb898235e1376ac76077cf780d9b4698
2018-03-19 17:01:52 -07:00

34 lines
806 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 "eden/fs/fuse/FileHandleBase.h"
using namespace folly;
namespace facebook {
namespace eden {
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();
}
} // namespace eden
} // namespace facebook