From stdcxx-commits-return-278-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Fri Jan 06 02:53:52 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 33827 invoked from network); 6 Jan 2006 02:53:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Jan 2006 02:53:52 -0000 Received: (qmail 27442 invoked by uid 500); 6 Jan 2006 02:53:52 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 27426 invoked by uid 500); 6 Jan 2006 02:53:52 -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 27415 invoked by uid 500); 6 Jan 2006 02:53:52 -0000 Delivered-To: apmail-incubator-stdcxx-cvs@incubator.apache.org Received: (qmail 27407 invoked by uid 99); 6 Jan 2006 02:53:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2006 18:53:51 -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; Thu, 05 Jan 2006 18:53:51 -0800 Received: (qmail 33727 invoked by uid 65534); 6 Jan 2006 02:53:31 -0000 Message-ID: <20060106025331.33726.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r366396 - /incubator/stdcxx/trunk/src/wctype.cpp Date: Fri, 06 Jan 2006 02:53:30 -0000 To: stdcxx-cvs@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sebor Date: Thu Jan 5 18:53:18 2006 New Revision: 366396 URL: http://svn.apache.org/viewcvs?rev=366396&view=rev Log: 2006-01-05 Martin Sebor * wctype.cpp (wchar.h): Included for wctomb(). Modified: incubator/stdcxx/trunk/src/wctype.cpp Modified: incubator/stdcxx/trunk/src/wctype.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/src/wctype.cpp?rev=366396&r1=366395&r2=366396&view=diff ============================================================================== --- incubator/stdcxx/trunk/src/wctype.cpp (original) +++ incubator/stdcxx/trunk/src/wctype.cpp Thu Jan 5 18:53:18 2006 @@ -2,7 +2,7 @@ * * wctype.cpp - source for the C++ Standard Library ctype facets * - * $Id: //stdlib/dev/source/stdlib/wctype.cpp#16 $ + * $Id$ * *************************************************************************** * @@ -29,8 +29,13 @@ #include #include #include -#include -#include // memset() + +#ifndef _RWSTD_NO_WCHAR_H +# include // for wctob() +#endif // _RWSTD_NO_WCHAR_H + +#include // for iswspace(), ... +#include // for memset() #include #include