Skip to content

Commit

Permalink
Unecessary parens
Browse files Browse the repository at this point in the history
Signed-off-by: Jules Aguillon <juloo.dsi@gmail.com>
  • Loading branch information
Julow committed Sep 25, 2019
1 parent 56861af commit 9dcb200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dune/preprocessing.ml
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ let make sctx ~dir ~expander ~dep_kind ~lint ~preprocess ~preprocessor_deps
in
let preprocessor_deps =
let loc, deps = preprocessor_deps in
( if (not (is_preprocessing preprocess)) && not (List.is_empty deps) then
( if not (is_preprocessing preprocess) && not (List.is_empty deps) then
let is_error = Dune_project.dune_version (Scope.project scope) >= (2, 0) in
User_warning.emit ~loc ~is_error
[ Pp.text
Expand Down

0 comments on commit 9dcb200

Please sign in to comment.