Skip to content
Snippets Groups Projects
Commit 3eb55d65 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

prefer OCaml 4.13 new String functions over Extlib's

parent bcd5947f
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ default:
variables:
DEFAULT: "master"
OCAML: "4.11"
OCAML: "4.13"
################################################################################
### TESTS
......
......@@ -28,7 +28,7 @@ open Cil_types
*)
let is_not_orig_variable lv =
lv.lv_name = "__retres" ||
Extlib.string_prefix "__fc_" lv.lv_name ||
String.starts_with ~prefix:"__fc_" lv.lv_name ||
match lv.lv_origin with
| Some v ->
not v.vsource || v.vtemp ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment