From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8035 invoked by alias); 13 Jul 2014 09:28:41 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 8019 invoked by uid 89); 13 Jul 2014 09:28:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_20,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: userp1040.oracle.com Received: from userp1040.oracle.com (HELO userp1040.oracle.com) (156.151.31.81) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sun, 13 Jul 2014 09:28:38 +0000 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id s6D9SZTe030796 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 13 Jul 2014 09:28:36 GMT Received: from aserz7021.oracle.com (aserz7021.oracle.com [141.146.126.230]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s6D9SXBf006420 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 13 Jul 2014 09:28:33 GMT Received: from abhmp0016.oracle.com (abhmp0016.oracle.com [141.146.116.22]) by aserz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s6D9SXhs010244; Sun, 13 Jul 2014 09:28:33 GMT Received: from [192.168.1.4] (/79.13.214.19) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sun, 13 Jul 2014 02:28:33 -0700 Message-ID: <53C2504A.2010907@oracle.com> Date: Sun, 13 Jul 2014 09:28:00 -0000 From: Paolo Carlini User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Ulrich Drepper , gcc-patches@gcc.gnu.org Subject: Re: [PATCH] libstdc++: add uniform on sphere distribution References: <87a98eow4m.fsf@x240.local.i-did-not-set--mail-host-address--so-tickle-me> In-Reply-To: <87a98eow4m.fsf@x240.local.i-did-not-set--mail-host-address--so-tickle-me> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00900.txt.bz2 Hi, On 07/13/2014 04:00 AM, Ulrich Drepper wrote: > + template + typename _Traits> > + std::basic_ostream<_CharT, _Traits>& > + operator<<(std::basic_ostream<_CharT, _Traits>& __os, > + const __gnu_cxx::uniform_on_sphere_distribution<_Dimen, > + _RealType>& __x) > + { > + return __os; > + } > + > + template + typename _Traits> > + std::basic_istream<_CharT, _Traits>& > + operator>>(std::basic_istream<_CharT, _Traits>& __is, > + __gnu_cxx::uniform_on_sphere_distribution<_Dimen, > + _RealType>& __x) > + { > + return __is; > + } are these dummy implementations intended? Thanks, Paolo.