remove unused integer module, intset, intmap

This commit is contained in:
Hannes Mehnert 2022-11-11 11:35:37 +01:00
parent 33c7c24dfd
commit ddfb17c0b2

View File

@ -10,14 +10,6 @@ module IpMap = struct
with Not_found -> None
end
module Int = struct
type t = int
let compare (a:t) (b:t) = compare a b
end
module IntSet = Set.Make(Int)
module IntMap = Map.Make(Int)
(** An Ethernet interface. *)
class type interface = object
method my_mac : Macaddr.t