Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
c29b11a1
Commit
c29b11a1
authored
5 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
Adds flush in Transitioning.Stdlib, and replaces Pervasives.flush in dotgraph.
Avoids a compilation warning with ocaml >= 4.08.
parent
10494aac
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/libraries/stdlib/transitioning.ml.in
+1
-0
1 addition, 0 deletions
src/libraries/stdlib/transitioning.ml.in
src/libraries/stdlib/transitioning.mli
+1
-0
1 addition, 0 deletions
src/libraries/stdlib/transitioning.mli
src/libraries/utils/dotgraph.ml
+1
-1
1 addition, 1 deletion
src/libraries/utils/dotgraph.ml
with
3 additions
and
1 deletion
src/libraries/stdlib/transitioning.ml.in
+
1
−
0
View file @
c29b11a1
...
...
@@ -29,6 +29,7 @@ module Stdlib = struct
let max = max
let min_int = min_int
let max_int = max_int
let flush = flush
end
[@@@ warning "-3"]
...
...
This diff is collapsed.
Click to expand it.
src/libraries/stdlib/transitioning.mli
+
1
−
0
View file @
c29b11a1
...
...
@@ -42,6 +42,7 @@ module Stdlib: sig
val
max
:
'
a
->
'
a
->
'
a
val
min_int
:
int
val
max_int
:
int
val
flush
:
out_channel
->
unit
end
(** 4.08 *)
...
...
This diff is collapsed.
Click to expand it.
src/libraries/utils/dotgraph.ml
+
1
−
1
View file @
c29b11a1
...
...
@@ -128,7 +128,7 @@ let close dot =
begin
Format
.
fprintf
dot
.
fmt
"}@."
;
dot
.
fmt
<-
Format
.
err_formatter
;
Pervasives
.
flush
out
;
close_out
out
;
Transitioning
.
Stdlib
.
flush
out
;
close_out
out
;
dot
.
out
<-
None
;
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment