Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 97783 invoked from network); 25 Mar 2006 20:53:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Mar 2006 20:53:04 -0000 Received: (qmail 72001 invoked by uid 500); 25 Mar 2006 20:53:04 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 71980 invoked by uid 500); 25 Mar 2006 20:53:04 -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 71969 invoked by uid 99); 25 Mar 2006 20:53:04 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Mar 2006 12:53:04 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 25 Mar 2006 12:53:03 -0800 Received: (qmail 97673 invoked by uid 65534); 25 Mar 2006 20:52:43 -0000 Message-ID: <20060325205243.97672.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r388824 - /incubator/stdcxx/trunk/src/locale_body.cpp Date: Sat, 25 Mar 2006 20:52:42 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sebor Date: Sat Mar 25 12:52:41 2006 New Revision: 388824 URL: http://svn.apache.org/viewcvs?rev=388824&view=rev Log: 2006-03-25 Martin Sebor * locale_body.cpp (__rw_cats): Guarded the use of _RWSTD_CAT_5 and used _RWSTD_CAT_0 in its place when not #defined (e.g., by dumb windoze). Modified: incubator/stdcxx/trunk/src/locale_body.cpp Modified: incubator/stdcxx/trunk/src/locale_body.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/src/locale_body.cpp?rev=388824&r1=388823&r2=388824&view=diff ============================================================================== --- incubator/stdcxx/trunk/src/locale_body.cpp (original) +++ incubator/stdcxx/trunk/src/locale_body.cpp Sat Mar 25 12:52:41 2006 @@ -79,7 +79,14 @@ _RWSTD_CAT_2 (_RW::__rw_locale), _RWSTD_CAT_3 (_RW::__rw_locale), _RWSTD_CAT_4 (_RW::__rw_locale), + +#ifdef _RWSTD_CAT_5 _RWSTD_CAT_5 (_RW::__rw_locale) +#else // if !defined (_RWSTD_CAT_5) + // for Windoze (no LC_MESSAGES there) + _RWSTD_CAT_0 (_RW::__rw_locale) +#endif // _RWSTD_CAT_5 + };