Strictfp on a class is now a warning #KT-11109 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-03-11 19:45:28 +03:00
committed by Mikhail Glukhikh
parent 173a838f8c
commit f76efb68f2
8 changed files with 66 additions and 5 deletions
@@ -41,7 +41,7 @@ annotation class Transient
* of floating point operations performed inside the method needs to be restricted in order to
* achieve better portability.
*/
@Target(FUNCTION, CONSTRUCTOR, PROPERTY_GETTER, PROPERTY_SETTER)
@Target(FUNCTION, CONSTRUCTOR, PROPERTY_GETTER, PROPERTY_SETTER, CLASS)
@Retention(AnnotationRetention.SOURCE)
@MustBeDocumented
annotation class Strictfp