Skip to content

Commit b39d29c

Browse files
committed
Avoiding clang-format in HPresolve.h line
1 parent 6dde733 commit b39d29c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

highs/presolve/HPresolve.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ class HPresolve {
146146
Result my_result;
147147

148148
public:
149-
StatusResult(bool flag) : my_flag(flag), my_result(Result::kOk){};
149+
// clang-format off
150+
StatusResult(bool flag) : my_flag(flag), my_result(Result::kOk) {};
151+
// clang-format on
150152
StatusResult(Result result) : my_result(result) {
151153
my_flag = (result == Result::kOk);
152154
};

0 commit comments

Comments
 (0)