File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ package quoted {
17
17
18
18
/** Some basic type tags, currently incomplete */
19
19
object Type {
20
- implicit val UnitTag : Type [Unit ] = new TaggedType [Unit ]
21
- implicit val BooleanTag : Type [Boolean ] = new TaggedType [Boolean ]
22
- implicit val ByteTag : Type [Byte ] = new TaggedType [Byte ]
23
- implicit val CharTag : Type [Char ] = new TaggedType [Char ]
24
- implicit val ShortTag : Type [Short ] = new TaggedType [Short ]
25
- implicit val IntTag : Type [Int ] = new TaggedType [Int ]
26
- implicit val LongTag : Type [Long ] = new TaggedType [Long ]
27
- implicit val FloatTag : Type [Float ] = new TaggedType [Float ]
28
- implicit val DoubleTag : Type [Double ] = new TaggedType [Double ]
20
+ delegate UnitTag for Type [Unit ] = new TaggedType [Unit ]
21
+ delegate BooleanTag for Type [Boolean ] = new TaggedType [Boolean ]
22
+ delegate ByteTag for Type [Byte ] = new TaggedType [Byte ]
23
+ delegate CharTag for Type [Char ] = new TaggedType [Char ]
24
+ delegate ShortTag for Type [Short ] = new TaggedType [Short ]
25
+ delegate IntTag for Type [Int ] = new TaggedType [Int ]
26
+ delegate LongTag for Type [Long ] = new TaggedType [Long ]
27
+ delegate FloatTag for Type [Float ] = new TaggedType [Float ]
28
+ delegate DoubleTag for Type [Double ] = new TaggedType [Double ]
29
29
}
30
30
31
31
}
You can’t perform that action at this time.
0 commit comments