File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,6 @@ mod impls {
254
254
where
255
255
F : Fn < A > ,
256
256
{
257
- #[ inline]
258
257
extern "rust-call" fn call ( & self , args : A ) -> F :: Output {
259
258
( * * self ) . call ( args)
260
259
}
@@ -265,7 +264,6 @@ mod impls {
265
264
where
266
265
F : Fn < A > ,
267
266
{
268
- #[ inline]
269
267
extern "rust-call" fn call_mut ( & mut self , args : A ) -> F :: Output {
270
268
( * * self ) . call ( args)
271
269
}
@@ -278,7 +276,6 @@ mod impls {
278
276
{
279
277
type Output = F :: Output ;
280
278
281
- #[ inline]
282
279
extern "rust-call" fn call_once ( self , args : A ) -> F :: Output {
283
280
( * self ) . call ( args)
284
281
}
@@ -289,7 +286,6 @@ mod impls {
289
286
where
290
287
F : FnMut < A > ,
291
288
{
292
- #[ inline]
293
289
extern "rust-call" fn call_mut ( & mut self , args : A ) -> F :: Output {
294
290
( * self ) . call_mut ( args)
295
291
}
@@ -301,7 +297,6 @@ mod impls {
301
297
F : FnMut < A > ,
302
298
{
303
299
type Output = F :: Output ;
304
- #[ inline]
305
300
extern "rust-call" fn call_once ( self , args : A ) -> F :: Output {
306
301
( * self ) . call_mut ( args)
307
302
}
You can’t perform that action at this time.
0 commit comments