mirror of
https://github.com/NixOS/nix.git
synced 2025-11-28 13:11:00 +01:00
Fix bad merge
This commit is contained in:
parent
9bba7ac3e8
commit
f743e935a7
1 changed files with 4 additions and 34 deletions
|
|
@ -507,24 +507,10 @@ struct GitRepoImpl : GitRepo, std::enable_shared_from_this<GitRepoImpl>
|
||||||
/**
|
/**
|
||||||
* A 'GitSourceAccessor' with no regard for export-ignore or any other transformations.
|
* A 'GitSourceAccessor' with no regard for export-ignore or any other transformations.
|
||||||
*/
|
*/
|
||||||
<<<<<<< HEAD
|
ref<GitSourceAccessor> getRawAccessor(const Hash & rev, bool smudgeLfs = false, bool applyFilters = false);
|
||||||
ref<GitSourceAccessor> getRawAccessor(
|
|
||||||
const Hash & rev,
|
|
||||||
bool smudgeLfs = false,
|
|
||||||
bool applyFilters = false);
|
|
||||||
|
|
||||||
ref<SourceAccessor> getAccessor(
|
|
||||||
const Hash & rev,
|
|
||||||
bool exportIgnore,
|
|
||||||
std::string displayPrefix,
|
|
||||||
bool smudgeLfs = false,
|
|
||||||
bool applyFilters = false) override;
|
|
||||||
=======
|
|
||||||
ref<GitSourceAccessor> getRawAccessor(const Hash & rev, bool smudgeLfs = false);
|
|
||||||
|
|
||||||
ref<SourceAccessor>
|
ref<SourceAccessor>
|
||||||
getAccessor(const Hash & rev, bool exportIgnore, std::string displayPrefix, bool smudgeLfs = false) override;
|
getAccessor(const Hash & rev, bool exportIgnore, std::string displayPrefix, bool smudgeLfs = false, bool applyFilters = false) override;
|
||||||
>>>>>>> origin/master
|
|
||||||
|
|
||||||
ref<SourceAccessor> getAccessor(const WorkdirInfo & wd, bool exportIgnore, MakeNotAllowedError e) override;
|
ref<SourceAccessor> getAccessor(const WorkdirInfo & wd, bool exportIgnore, MakeNotAllowedError e) override;
|
||||||
|
|
||||||
|
|
@ -1267,30 +1253,14 @@ struct GitFileSystemObjectSinkImpl : GitFileSystemObjectSink
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
<<<<<<< HEAD
|
ref<GitSourceAccessor> GitRepoImpl::getRawAccessor(const Hash & rev, bool smudgeLfs, bool applyFilters)
|
||||||
ref<GitSourceAccessor> GitRepoImpl::getRawAccessor(
|
|
||||||
const Hash & rev,
|
|
||||||
bool smudgeLfs,
|
|
||||||
bool applyFilters)
|
|
||||||
=======
|
|
||||||
ref<GitSourceAccessor> GitRepoImpl::getRawAccessor(const Hash & rev, bool smudgeLfs)
|
|
||||||
>>>>>>> origin/master
|
|
||||||
{
|
{
|
||||||
auto self = ref<GitRepoImpl>(shared_from_this());
|
auto self = ref<GitRepoImpl>(shared_from_this());
|
||||||
return make_ref<GitSourceAccessor>(self, rev, smudgeLfs, applyFilters);
|
return make_ref<GitSourceAccessor>(self, rev, smudgeLfs, applyFilters);
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
ref<SourceAccessor> GitRepoImpl::getAccessor(
|
|
||||||
const Hash & rev,
|
|
||||||
bool exportIgnore,
|
|
||||||
std::string displayPrefix,
|
|
||||||
bool smudgeLfs,
|
|
||||||
bool applyFilters)
|
|
||||||
=======
|
|
||||||
ref<SourceAccessor>
|
ref<SourceAccessor>
|
||||||
GitRepoImpl::getAccessor(const Hash & rev, bool exportIgnore, std::string displayPrefix, bool smudgeLfs)
|
GitRepoImpl::getAccessor(const Hash & rev, bool exportIgnore, std::string displayPrefix, bool smudgeLfs, bool applyFilters)
|
||||||
>>>>>>> origin/master
|
|
||||||
{
|
{
|
||||||
auto self = ref<GitRepoImpl>(shared_from_this());
|
auto self = ref<GitRepoImpl>(shared_from_this());
|
||||||
ref<GitSourceAccessor> rawGitAccessor = getRawAccessor(rev, smudgeLfs, applyFilters);
|
ref<GitSourceAccessor> rawGitAccessor = getRawAccessor(rev, smudgeLfs, applyFilters);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue