From 8088633b5b53ae86ce3a4210db16a5e059999d24 Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Thu, 23 Sep 2021 14:30:52 -0500 Subject: [PATCH] Remove map which is no longer used in implementation --- src/clj/coffi/ffi.clj | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/clj/coffi/ffi.clj b/src/clj/coffi/ffi.clj index e2b9419..27d92a5 100644 --- a/src/clj/coffi/ffi.clj +++ b/src/clj/coffi/ffi.clj @@ -645,18 +645,6 @@ ::double :dload ::pointer :aload}) -(def ^:private store-instructions - "Mapping from primitive types to the instruction used to pop them off the stack." - {::byte :bstore - ::short :sstore - ::int :istore - ::long :lstore - ::long-long :lstore - ::char :cstore - ::float :fstore - ::double :dstore - ::pointer :astore}) - (def ^:private prim-classes "Mapping from primitive types to their box classes." {::byte Byte