Skip to content

Commit

Permalink
Fix indentation (PR #796)
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Jan 2, 2023
1 parent 9ce9249 commit 6466f7c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/analyses/unassumeAnalysis.ml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ struct
);

let loc_of_location (location: YamlWitnessType.Location.t): Cil.location = {
file = location.file_name;
line = location.line;
column = location.column + 1;
byte = -1;
endLine = -1;
endColumn = -1;
endByte = -1;
synthetic = false;
}
file = location.file_name;
line = location.line;
column = location.column + 1;
byte = -1;
endLine = -1;
endColumn = -1;
endByte = -1;
synthetic = false;
}
in

let yaml = Yaml_unix.of_file_exn (Fpath.v (GobConfig.get_string "witness.yaml.unassume")) in
Expand Down

0 comments on commit 6466f7c

Please sign in to comment.