소스 검색

Removed unused function

Taddeus Kroes 11 년 전
부모
커밋
c6dee331c5
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 4
      parser.mly

+ 0 - 4
parser.mly

@@ -11,10 +11,6 @@
 
   let loc start stop = [Loc (Util.loc_from_lexpos start stop)]
 
-  let rec make_dims dimloc = function
-    | [] -> []
-    | dim :: tail -> Dim (dim, dimloc) :: (make_dims dimloc tail)
-
   let rec make_args = function
     | [] -> []
     | h::t -> Arg h :: (make_args t)