summaryrefslogtreecommitdiff
path: root/src/archive/ZWrapper.cpp
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2026-03-23 21:23:59 -0600
committerKiritoDv <kiritodev01@gmail.com>2026-03-23 21:23:59 -0600
commit75f64161cb4addcbc6e29732df8d9b519a62c43f (patch)
tree92e2b17bd8c41af42bdf24a6eb4b7b08b90254f6 /src/archive/ZWrapper.cpp
parent654b451ddc6cf25db201b2c858948f430784cc5f (diff)
Implemented clang-format
Diffstat (limited to 'src/archive/ZWrapper.cpp')
-rw-r--r--src/archive/ZWrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/archive/ZWrapper.cpp b/src/archive/ZWrapper.cpp
index 6440b62..330d35e 100644
--- a/src/archive/ZWrapper.cpp
+++ b/src/archive/ZWrapper.cpp
@@ -23,10 +23,10 @@ bool ZWrapper::AddFile(const std::string& path, std::vector<char> data) {
char* fileData = data.data();
size_t fileSize = data.size();
- if(Companion::Instance != nullptr && Companion::Instance->IsDebug()){
+ if (Companion::Instance != nullptr && Companion::Instance->IsDebug()) {
SPDLOG_INFO("Creating debug file: debug/{}", path);
std::string dpath = "debug/" + path;
- if(!fs::exists(fs::path(dpath).parent_path())){
+ if (!fs::exists(fs::path(dpath).parent_path())) {
fs::create_directories(fs::path(dpath).parent_path());
}
std::ofstream stream(dpath, std::ios::binary);