Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 98264 invoked from network); 10 Aug 2007 16:53:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Aug 2007 16:53:39 -0000 Received: (qmail 17328 invoked by uid 500); 10 Aug 2007 16:53:37 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 17316 invoked by uid 500); 10 Aug 2007 16:53:37 -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 17305 invoked by uid 99); 10 Aug 2007 16:53:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Aug 2007 09:53:37 -0700 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, 10 Aug 2007 16:53:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 801DE1A981D; Fri, 10 Aug 2007 09:53:16 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r564676 - /incubator/stdcxx/trunk/src/num_get.cpp Date: Fri, 10 Aug 2007 16:53:16 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070810165316.801DE1A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Fri Aug 10 09:53:15 2007 New Revision: 564676 URL: http://svn.apache.org/viewvc?view=rev&rev=564676 Log: 2007-08-10 Farid Zaripov * num_get.cpp (__rw_ldbl_infinity): Guarded with _RWSTD_NO_LONG_DOUBLE. Modified: incubator/stdcxx/trunk/src/num_get.cpp Modified: incubator/stdcxx/trunk/src/num_get.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/num_get.cpp?view=diff&rev=564676&r1=564675&r2=564676 ============================================================================== --- incubator/stdcxx/trunk/src/num_get.cpp (original) +++ incubator/stdcxx/trunk/src/num_get.cpp Fri Aug 10 09:53:15 2007 @@ -6,22 +6,23 @@ * *************************************************************************** * - * Copyright 2005-2006 The Apache Software Foundation or its licensors, - * as applicable. + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at * - * Copyright 2001-2006 Rogue Wave Software. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied. See the License for the specific language governing + * permissions and limitations under the License. + * + * Copyright 2001-2007 Rogue Wave Software, Inc. * **************************************************************************/ @@ -87,7 +88,12 @@ extern const float __rw_flt_infinity; extern const double __rw_dbl_infinity; + +#ifndef _RWSTD_NO_LONG_DOUBLE + extern const long double __rw_ldbl_infinity; + +#endif // _RWSTD_NO_LONG_DOUBLE } // extern "C"