Skip to content

Commit 5329a0e

Browse files
committed
Style: clang-format continuation indent
1 parent d396a23 commit 5329a0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/mps_parser.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,9 +455,9 @@ lp_problem_t *read_mps_file(const char *filename)
455455
}
456456

457457
bool inline_max = next_section == SEC_OBJSENSE && n_tokens >= 2 &&
458-
(strcmp(tokens[1], "MAX") == 0 || strcmp(tokens[1], "MAXIMIZE") == 0);
458+
(strcmp(tokens[1], "MAX") == 0 || strcmp(tokens[1], "MAXIMIZE") == 0);
459459
bool inline_min = next_section == SEC_OBJSENSE && n_tokens >= 2 &&
460-
(strcmp(tokens[1], "MIN") == 0 || strcmp(tokens[1], "MINIMIZE") == 0);
460+
(strcmp(tokens[1], "MIN") == 0 || strcmp(tokens[1], "MINIMIZE") == 0);
461461
bool is_header = next_section != SEC_NONE && (n_tokens == 1 || inline_max || inline_min);
462462

463463
if (is_header)

0 commit comments

Comments
 (0)