We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dcf9ff commit cd9b5e2Copy full SHA for cd9b5e2
1 file changed
src/frontend/Warnings.ml
@@ -1,5 +1,3 @@
1
-open Core
2
-open Core.Poly
3
module Location_span = Middle.Location_span
4
module Location = Middle.Location
5
@@ -15,5 +13,5 @@ let pp ?printed_filename ppf (span, message) =
15
13
Fmt.pf ppf "@[<v4>%a%a%a@]@]" purple "Warning" maybe_loc span Fmt.text message
16
14
17
let pp_warnings ?printed_filename ppf warnings =
18
- if not (List.is_empty warnings) then
+ if not (Core.List.is_empty warnings) then
19
Fmt.(pf ppf "@[<v>%a@]@\n" (list ~sep:cut (pp ?printed_filename)) warnings)
0 commit comments