An issue when using numbers with floating point.
Opened this issue · 2 comments
Deleted user commented
Example:
@Оutsource // used russian O letter to prevent github mentioning random user.
public static void main(String[] args) {
System.out.println(3.1f + 3.9f);
}
// error on compiling .dll: lld-link: undefined symbol: _fltused
superblaubeere27 commented
Thanks for your report! I hopefully fixed this problem in a0cd9ea. From this update on, you will have to have Visual Studio with C++ Support installed. Please let me know if the fix works.
Deleted user commented
Thanks for your report! I hopefully fixed this problem in a0cd9ea. From this update on, you will have to have Visual Studio with C++ Support installed. Please let me know if the fix works.
Thank you! Works now.