sapling/eden/fs/store/EmptyBackingStore.cpp
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

39 lines
1.1 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "EmptyBackingStore.h"
#include <folly/futures/Future.h>
#include "eden/fs/model/Blob.h"
#include "eden/fs/model/Hash.h"
#include "eden/fs/model/Tree.h"
using folly::Future;
using folly::makeFuture;
using std::unique_ptr;
namespace facebook {
namespace eden {
EmptyBackingStore::EmptyBackingStore() {}
EmptyBackingStore::~EmptyBackingStore() {}
Future<unique_ptr<Tree>> EmptyBackingStore::getTree(const Hash& /* id */) {
return makeFuture<unique_ptr<Tree>>(std::domain_error("empty backing store"));
}
Future<unique_ptr<Blob>> EmptyBackingStore::getBlob(const Hash& /* id */) {
return makeFuture<unique_ptr<Blob>>(std::domain_error("empty backing store"));
}
Future<unique_ptr<Tree>> EmptyBackingStore::getTreeForCommit(
const Hash& /* commitID */) {
return makeFuture<unique_ptr<Tree>>(std::domain_error("empty backing store"));
}
} // namespace eden
} // namespace facebook