From stdcxx-commits-return-2242-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Fri Dec 14 00:47:18 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 62008 invoked from network); 14 Dec 2007 00:47:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Dec 2007 00:47:18 -0000 Received: (qmail 22333 invoked by uid 500); 14 Dec 2007 00:47:07 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 22324 invoked by uid 500); 14 Dec 2007 00:47:07 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 22313 invoked by uid 99); 14 Dec 2007 00:47:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Dec 2007 16:47:07 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Dec 2007 00:46:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 073C61A9832; Thu, 13 Dec 2007 16:46:58 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r604073 - /incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp Date: Fri, 14 Dec 2007 00:46:57 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071214004658.073C61A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Thu Dec 13 16:46:56 2007 New Revision: 604073 URL: http://svn.apache.org/viewvc?rev=604073&view=rev Log: 2007-12-11 Travis Vitek STDCXX-673 * etc/config/src/LIMITS.cpp (main): Always use signed types for definition of _RWSTD_INT[8,16,32,64]_T macros. Modified: incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp Modified: incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp?rev=604073&r1=604072&r2=604073&view=diff ============================================================================== --- incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp (original) +++ incubator/stdcxx/trunk/etc/config/src/LIMITS.cpp Thu Dec 13 16:46:56 2007 @@ -407,10 +407,9 @@ width, width < 10 ? " " : "", type, \ width, width < 10 ? " " : "", type); \ else \ - printf ("#define _RWSTD_INT%d_T %s %s%s\n" \ + printf ("#define _RWSTD_INT%d_T %s signed %s\n" \ "#define _RWSTD_UINT%d_T %s unsigned %s\n", \ - width, width < 10 ? " " : "", \ - 8 == width && '\xff' < 0 ? "signed " : "", type, \ + width, width < 10 ? " " : "", type, \ width, width < 10 ? " " : "", type); \ } while (0)