Skip to content

Commit 056164b

Browse files
Break overlong lines in help text
1 parent e58692e commit 056164b

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/goto-instrument/reachability_slicer.h

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,14 @@ void reachability_slicer(
3232
const std::list<std::string> &properties,
3333
const bool include_forward_reachability);
3434

35-
#define OPT_REACHABILITY_SLICER \
35+
// clang-format off
36+
#define OPT_REACHABILITY_SLICER \
3637
"(reachability-slice)(reachability-slice-fb)" // NOLINT(*)
3738

38-
#define HELP_REACHABILITY_SLICER \
39-
" --reachability-slice remove instructions that cannot appear on a " \
40-
"trace from entry point to a property\n" \
41-
" --reachability-slice-fb remove instructions that cannot appear on a " \
42-
"trace from entry point through a property\n" // NOLINT(*)
43-
39+
#define HELP_REACHABILITY_SLICER \
40+
" --reachability-slice remove instructions that cannot appear on\n" \
41+
" a trace from entry point to a property\n" \
42+
" --reachability-slice-fb remove instructions that cannot appear on\n" \
43+
" a trace from entry point through a property\n" // NOLINT(*)
44+
// clang-format on
4445
#endif // CPROVER_GOTO_INSTRUMENT_REACHABILITY_SLICER_H

0 commit comments

Comments
 (0)