Date: Sat, 28 Jun 2003 04:00:29 -0700 (PDT) From: "Artem 'Zazoobr' Ignatjev" <timon@memphis.mephi.ru> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/53870: C++ undeclares standard math functions like isinf() Message-ID: <200306281100.h5SB0Tbg021992@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/53870; it has been noted by GNATS.
From: "Artem 'Zazoobr' Ignatjev" <timon@memphis.mephi.ru>
To: Michael van Elst <mlelstv@dev.de.cw.net>
Cc: FreeBSD-gnats-submit@freebsd.org
Subject: Re: bin/53870: C++ undeclares standard math functions like isinf()
Date: 28 Jun 2003 14:54:22 +0400
Michael van Elst wrote:
> >Description:
> The following C++ program does not compile on FreeBSD5.*
>
> #include <cmath>
Add:
using namespace std;
> void foo()
> {
> double d;
> isinf(d);
> }
>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306281100.h5SB0Tbg021992>
