소스 검색

[core] Suppress NOTHING_TO_INLINE warnings for AtomicIntSeq

Him188 3 년 전
부모
커밋
ab8e53fc76
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      mirai-core/src/commonMain/kotlin/utils/AtomicIntSeq.kt

+ 3 - 0
mirai-core/src/commonMain/kotlin/utils/AtomicIntSeq.kt

@@ -7,6 +7,9 @@
  * https://github.com/mamoe/mirai/blob/dev/LICENSE
  */
 
+// IDE doesn't show warnings but compiler do.
+@file:Suppress("NOTHING_TO_INLINE", "KotlinRedundantDiagnosticSuppress")
+
 package net.mamoe.mirai.internal.utils
 
 import kotlinx.atomicfu.AtomicInt