This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Stephen Webb's staging headers patch
- To: David Edelsohn <dje at watson dot ibm dot com>
- Subject: Re: Stephen Webb's staging headers patch
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Fri, 20 Jul 2001 21:00:38 -0700 (PDT)
- cc: Gabriel Dos Reis <Gabriel dot Dos-Reis at cmla dot ens-cachan dot fr>, Phil Edwards <pedwards at disaster dot jaj dot com>, libstdc++ at gcc dot gnu dot org
> #if LONG_MAX > 2147483647
> static const int digits = 63;
> static const int digits10 = 19;
> #else if LONG_MAX > 32767
> static const int digits = 31;
> static const int digits10 = 9;
> #else
> static const int digits = 15;
> static const int digits10 = 4;
> #endif
> That would avoid multilibbed target includes as well.
Excellent.
Thanks,
benjamin