Skip to content

Commit cffdb82

Browse files
Fix missing semicolon in warning logic
Co-authored-by: michael-schwarz <13812333+michael-schwarz@users.noreply.github.com>
1 parent a1f285d commit cffdb82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/framework/control.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let spec_module: (module Spec) Lazy.t = lazy (
3030
if arg_enabled then
3131
M.warn_noloc "Hashconsing (ana.opt.hashcons) is disabled, but is implicitly enabled because ARG is enabled (exp.arg.enabled)";
3232
if apron_enabled then
33-
M.warn_noloc "Hashconsing (ana.opt.hashcons) is disabled, but may be required for Apron domain (ana.activated includes 'apron')"
33+
M.warn_noloc "Hashconsing (ana.opt.hashcons) is disabled, but may be required for Apron domain (ana.activated includes 'apron')";
3434
);
3535

3636
(* apply functor F on module X if opt is true *)

0 commit comments

Comments
 (0)