1 parent b391e8e commit e035a34Copy full SHA for e035a34
1 file changed
bin/blackbelt.cpp
@@ -37,8 +37,11 @@ static std::string outputHelper() {
37
}
38
39
static bool copyExact(const std::string& src, const std::string& dst) {
40
- std::ifstream in(src, std::ios::binary); std::ofstream out(dst, std::ios::binary);
41
- if (!in || !out) return false; out << in.rdbuf(); return static_cast<bool>(out);
+ std::ifstream in(src, std::ios::binary);
+ std::ofstream out(dst, std::ios::binary);
42
+ if (!in || !out) return false;
43
+ out << in.rdbuf();
44
+ return static_cast<bool>(out);
45
46
47
static std::string defaultSavePath() {
0 commit comments