Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Jan 12, 2024
1 parent 692e919 commit 469cf26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/libfetchers/git-utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,8 @@ struct GitExportIgnoreInputAccessor : FilteringInputAccessor {
}
}

bool isExportIgnored(const CanonPath & path) {
bool isExportIgnored(const CanonPath & path)
{
const char *exportIgnoreEntry = nullptr;

// GIT_ATTR_CHECK_INDEX_ONLY:
Expand All @@ -721,7 +722,8 @@ struct GitExportIgnoreInputAccessor : FilteringInputAccessor {
}
}

bool isAllowed(const CanonPath & path) override {
bool isAllowed(const CanonPath & path) override
{
return !isExportIgnored(path);
}

Expand Down

0 comments on commit 469cf26

Please sign in to comment.