Description
I'm compiling Qt 5.2 for iOS from the release branch. I use Mac 10.9, Xcode5 last version. I enabled C++11 support in qtbase/configure. Then I ran
./configure -xplatform macx-ios-clang -release make
Compilation fails because of a missing cast in src/plugins/platforms/ios/qiosinputcontext.mm line 153.
m_curve = [notification.userInfo[UIKeyboardAnimationCurveUserInfoKey] integerValue] << 16;
should be
m_curve = (UIViewAnimationCurve)([notification.userInfo[UIKeyboardAnimationCurveUserInfoKey] integerValue] << 16);
The cast doesn't seem to be in the stable branch either.