This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #120543] work around a C++ library bug in VC 2003
authorTony Cook <tony@develop-help.com>
Mon, 18 Nov 2013 22:50:25 +0000 (09:50 +1100)
committerTony Cook <tony@develop-help.com>
Mon, 18 Nov 2013 22:50:25 +0000 (09:50 +1100)
commit0f24672021c6c5d7f398a81ee24305ae45c32779
treea89e7e52f8a122d4d237d20cf7e4a04333327631
parentf2756cbb47e4bb872c6b9acc9ee0f67b30167864
[perl #120543] work around a C++ library bug in VC 2003

VC 2003 makes overloaded versions of ldexp() available when including
<math.h> which should only be visible when including <cmath>.

The cast ensures the ldexp(double, int) signature is used.
util.c