Home > Mobile >  How to suppress: Expected performance impact from inlining is insignificant. Inlining works best for
How to suppress: Expected performance impact from inlining is insignificant. Inlining works best for

Time:12-10

How to suppress the following warning?

Expected performance impact from inlining is insignificant. Inlining works best for functions with parameters of functional types

CodePudding user response:

based on this:

@file:Suppress("NOTHING_TO_INLINE")

or

@Suppress("NOTHING_TO_INLINE")
  • Related