summaryrefslogtreecommitdiff
path: root/src/utils/archive/archive_ops.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/archive/archive_ops.cpp')
-rw-r--r--src/utils/archive/archive_ops.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/archive/archive_ops.cpp b/src/utils/archive/archive_ops.cpp
index 59b1d8a0..8e70c814 100644
--- a/src/utils/archive/archive_ops.cpp
+++ b/src/utils/archive/archive_ops.cpp
@@ -95,8 +95,8 @@ auto enable_read_filter(archive* ar, ArchiveType type) -> bool {
} // namespace
#endif // BOOTSTRAP_BUILD_TOOL
-auto ArchiveOps::WriteEntry(archive_entry* entry, archive* aw)
- -> std::optional<std::string> {
+auto ArchiveOps::WriteEntry(archive_entry* entry,
+ archive* aw) -> std::optional<std::string> {
#ifndef BOOTSTRAP_BUILD_TOOL
std::filesystem::path entry_path{archive_entry_sourcepath(entry)};
// only write to archive if entry is file
@@ -115,8 +115,8 @@ auto ArchiveOps::WriteEntry(archive_entry* entry, archive* aw)
return std::nullopt;
}
-auto ArchiveOps::CopyData(archive* ar, archive* aw)
- -> std::optional<std::string> {
+auto ArchiveOps::CopyData(archive* ar,
+ archive* aw) -> std::optional<std::string> {
#ifndef BOOTSTRAP_BUILD_TOOL
int r{};
const void* buff{nullptr};