D20907: Disable boken and no longer needed workaround code

Hannah von Reth noreply at phabricator.kde.org
Mon Apr 29 21:12:34 BST 2019


vonreth created this revision.
Herald added a project: Frameworks.
Herald added a subscriber: kde-frameworks-devel.
vonreth requested review of this revision.

REVISION SUMMARY
  See:
  
    int main() {
    	const auto inf = std::numeric_limits<double>::infinity();
    	print(_MSC_VER);
    	print(atan2(inf, inf));
    	print(atan2(-inf, -inf));
    	print(atan2(inf, -inf));
    	print(fmod(10.0, inf));
    	print(fmod(10.0, -inf));
    
    	return 0;
    }
  
  ->
  
    _MSC_VER: 1920
    atan2(inf, inf): 0.785398
    atan2(-inf, -inf): -2.35619
    atan2(inf, -inf): 2.35619
    fmod(10.0, inf): 10
    fmod(10.0, -inf): 10
    
    ``

REPOSITORY
  R314 KJs

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D20907

AFFECTED FILES
  src/wtf/MathExtras.h

To: vonreth
Cc: kde-frameworks-devel, michaelh, ngraham, bruns
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.kde.org/pipermail/kde-frameworks-devel/attachments/20190429/0aad5402/attachment.html>


More information about the Kde-frameworks-devel mailing list