Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3878

Show
Ignore:
Timestamp:
08/14/08 08:32:03 (3 months ago)
Author:
Don Clugston
Message:

Fix for Phobos bugzilla 2269.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/math/Math.d

    r3602 r3878  
    547547{ 
    548548  creal cs = expi(z.re); 
    549   return cs.re * cosh(z.im) + cs.im * sinh(z.im) * 1i; 
     549  return cs.re * cosh(z.im) - cs.im * sinh(z.im) * 1i; 
    550550} 
    551551