Skip to content

Commit 160d887

Browse files
committed
Makes additional formatting fixes
1 parent 49d7eb0 commit 160d887

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

regression/contracts/quantifiers-forall-ensures-01/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// clang-format oFF
1+
// clang-format off
22
int f1(int *arr) __CPROVER_ensures(__CPROVER_forall {
33
int i;
44
(0 <= i && i < 10) ==> arr[i] == 0

regression/contracts/quantifiers-forall-ensures-02/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// clang-format oFF
1+
// clang-format off
22
int f1(int *arr) __CPROVER_ensures(__CPROVER_forall {
33
int i;
44
(0 <= i && i < 10) ==> arr[i] == i

src/goto-instrument/code_contracts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ void code_contractst::add_quantified_variable(
171171
// If the expression is a quantified expression, this function adds
172172
// the quantified variable to the symbol table and to the expression map
173173

174-
// TODO Currently only works if the contract contains only a single
174+
// TODO Currently only works if the contract contains only a single
175175
// quantified formula
176176
// i.e. (1) the top-level element is a quantifier formula
177177
// and (2) there are no inner quantifier formulae

0 commit comments

Comments
 (0)