File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
gdnative-core/src/core_types Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -2168,29 +2168,13 @@ pub mod serde {
2168
2168
Ok ( v. to_variant ( ) )
2169
2169
}
2170
2170
2171
- fn visit_i128 < E > ( self , v : i128 ) -> Result < Self :: Value , E >
2172
- where
2173
- E : Error ,
2174
- {
2175
- //TODO: Should this just return an error?
2176
- self . visit_i64 ( v as i64 )
2177
- }
2178
-
2179
2171
fn visit_u64 < E > ( self , v : u64 ) -> Result < Self :: Value , E >
2180
2172
where
2181
2173
E : Error ,
2182
2174
{
2183
2175
self . visit_i64 ( v as i64 )
2184
2176
}
2185
2177
2186
- fn visit_u128 < E > ( self , v : u128 ) -> Result < Self :: Value , E >
2187
- where
2188
- E : Error ,
2189
- {
2190
- //TODO: Should this just return an error?
2191
- self . visit_i64 ( v as i64 )
2192
- }
2193
-
2194
2178
fn visit_f64 < E > ( self , v : f64 ) -> Result < Self :: Value , E >
2195
2179
where
2196
2180
E : Error ,
You can’t perform that action at this time.
0 commit comments