c++ - DMC Math Bug
- xharbour_deletethis telkom.net.id (Andi Jahja) (22/22) Aug 20 2010 The following codes show DMC bug:
- Walter Bright (3/4) Aug 20 2010 I don't have a schedule for it, but you can track it here:
- xharbour_deletethis telkom.net.id (Andi Jahja) (6/10) Aug 20 2010 Thanks, but this made DMC be trashed for serious application until the
- Walter Bright (2/13) Aug 20 2010 I understand, and I appreciate you taking the time to submit a bug repor...
The following codes show DMC bug:
/--- begin ---
#include <stdio.h>
typedef struct
{
double dd;
long long int ll;
} UN;
const char * cmp( UN * pU )
{
return pU->dd >= pU->ll ? "OK" : "ERRROR";
}
int main( void )
{
UN u = { 10.50, 10 };
printf( "%s\n", cmp( &u ) );
return 0;
}
/--- end ---
Will this very bad bug be fixed?
--
Andi
Aug 20 2010
Andi Jahja wrote:Will this very bad bug be fixed?I don't have a schedule for it, but you can track it here: http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79
Aug 20 2010
On Fri, 20 Aug 2010 11:47:46 -0700, Walter Bright <newshound2 digitalmars.com> wrote:Andi Jahja wrote:Thanks, but this made DMC be trashed for serious application until the bug fixed. -- AndiWill this very bad bug be fixed?I don't have a schedule for it, but you can track it here: http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79
Aug 20 2010
Andi Jahja wrote:On Fri, 20 Aug 2010 11:47:46 -0700, Walter Bright <newshound2 digitalmars.com> wrote:I understand, and I appreciate you taking the time to submit a bug report.Andi Jahja wrote:Thanks, but this made DMC be trashed for serious application until the bug fixed.Will this very bad bug be fixed?I don't have a schedule for it, but you can track it here: http://bugzilla.digitalmars.com/issues/show_bug.cgi?id=79
Aug 20 2010








Walter Bright <newshound2 digitalmars.com>