From 7e055d21e7ab0d83f65f881137b620f5bc6a9bce Mon Sep 17 00:00:00 2001 From: teresy Date: Mon, 1 Oct 2018 23:15:31 -0400 Subject: [PATCH] Simplify module syntax --- hphp/hack/src/decl/decl_pos_utils.ml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hphp/hack/src/decl/decl_pos_utils.ml b/hphp/hack/src/decl/decl_pos_utils.ml index 543a94997d6df..71f66d0f786ee 100644 --- a/hphp/hack/src/decl/decl_pos_utils.ml +++ b/hphp/hack/src/decl/decl_pos_utils.ml @@ -255,6 +255,4 @@ end (*****************************************************************************) (* Returns a signature with all the positions replaced with Pos.none *) (*****************************************************************************) -module NormalizeSig = struct - include TraversePos(struct let pos _ = Pos.none end) -end +module NormalizeSig = TraversePos(struct let pos _ = Pos.none end)