On 02/19/2016 07:07 PM, Jonathan Wakely wrote:
The next problem is that gnulib defines:inline int signbit (float f) { return _gl_cxx_signbitf (f); } inline int signbit (double d) { return _gl_cxx_signbitd (d); } inline int signbit (long double l) { return _gl_cxx_signbitl (l); } GCC 6 provides a standard-conforming <math.h> which defines the same signbit overloads (as required by C++11 and C++14). So the gnulib header is incompatible with any conforming C++11 implementation.
Yeah, I think this has been addressed here: http://lists.gnu.org/archive/html/bug-gnulib/2016-02/msg00027.html -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane [email protected] Boulder, CO 80301 http://www.cora.nwra.com -- devel mailing list [email protected] http://lists.fedoraproject.org/admin/lists/[email protected]
