-
Bug
-
Resolution: Fixed
-
P4
-
7
-
b94
-
generic
-
windows
When building JDK7 with Visual Studio 2010, the build fails in make/sun/awt when compiling awt_TextArea.cpp:761
int actualScrollLines =
abs(platfScrollLines * (*delta_accum / WHEEL_DELTA));
The call to abs() is considered ambiguous as it can be int or int64 (exact compiler output is lost, unfortunately).
int actualScrollLines =
abs(platfScrollLines * (*delta_accum / WHEEL_DELTA));
The call to abs() is considered ambiguous as it can be int or int64 (exact compiler output is lost, unfortunately).