From ebf9acf6a280803cb502f70700300823e7b08a0f Mon Sep 17 00:00:00 2001 From: Josh Berdine Date: Thu, 13 Apr 2017 05:07:52 -0700 Subject: [PATCH] Use tail recursive infix list append Reviewed By: akotulski Differential Revision: D4878503 fbshipit-source-id: 3502e35 --- infer/src/base/IStd.ml | 2 -- 1 file changed, 2 deletions(-) diff --git a/infer/src/base/IStd.ml b/infer/src/base/IStd.ml index fe4f7c3bf..e9d85de6b 100644 --- a/infer/src/base/IStd.ml +++ b/infer/src/base/IStd.ml @@ -46,8 +46,6 @@ module Unix_ = struct end -let ( @ ) = Caml.List.append - (* Use Caml.Set since they are serialized using Marshal, and Core.Std.Set includes the comparison function in its representation, which Marshal cannot (de)serialize. *) module IntSet = Caml.Set.Make(Int)