Skip to content

Commit e035a34

Browse files
committed
Fix C++ misleading indentation warning
1 parent b391e8e commit e035a34

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

bin/blackbelt.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,11 @@ static std::string outputHelper() {
3737
}
3838

3939
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);
40+
std::ifstream in(src, std::ios::binary);
41+
std::ofstream out(dst, std::ios::binary);
42+
if (!in || !out) return false;
43+
out << in.rdbuf();
44+
return static_cast<bool>(out);
4245
}
4346

4447
static std::string defaultSavePath() {

0 commit comments

Comments
 (0)