From patchwork Thu Aug 28 15:46:53 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 383948 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B1619140119 for ; Fri, 29 Aug 2014 01:47:32 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=RG/aCcaxGYjSao4I1qfs8EZ/w5D583cFmm+6Vws6lp2oPtjAdXOIK KmmWuiXzkgXJXyX9nKSfKMWEb0tZjtUphoPAvGi3gXmWvGZ0i6EI46eUyRYGQ/jL 3RpaBwToGb+bXuHRXyARILeJ7U7m798eBb/19VE0WcNqvqTvnnFZ/4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=tikPhgXlDKcqmVvE+L65/IHrNlk=; b=PKpT78bDsZcdd9Cc6qJU sKf8eG/LaugBhI1X/+wHjYLgxNduws4i+w1+oDBYxd236WrIZURAStSqU+7smbaG 0lERx1fQWgfNm9hS66r28ZV8UU0Xit1J5SYBwb4ulrGhgC+ThbqBuj2XNPrXKIS/ ZgiktbiLwzVaAG5B+PA82ys= Received: (qmail 20044 invoked by alias); 28 Aug 2014 15:47:01 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 20020 invoked by uid 89); 28 Aug 2014 15:47:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 28 Aug 2014 15:46:57 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s7SFktvo004888 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 28 Aug 2014 11:46:56 -0400 Received: from localhost (ovpn-116-96.ams2.redhat.com [10.36.116.96]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s7SFksON022055; Thu, 28 Aug 2014 11:46:54 -0400 Date: Thu, 28 Aug 2014 16:46:53 +0100 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [patch] Adjust comments in testsuite/ext/random/ Message-ID: <20140828154653.GI22778@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) The tests for the non-standard distributions have bogus standard references. [rand.concept.dist] comes from an old C++0x draft, and the [rand.dist.ext.*] labels are entirely fictional because obviously non-standard extensions are not in the standard. Tested x86_64-linux, committed to trunk. commit f6da27eb1cbb9a6bbcfe2a6e39f99cb1cb372704 Author: Jonathan Wakely Date: Tue Apr 15 18:48:13 2014 +0100 * testsuite/ext/random/*: Fix incorrect standard references in comments. diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/default.cc index c1b3f56..a6dbd33 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template hypergeometric_distribution [rand.dist.ext.hypergeometric] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template hypergeometric_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/parms.cc index 0f541d0..8d98ab8 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template hypergeometric_distribution [rand.dist.ext.hypergeometric] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template hypergeometric_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/equal.cc index daf4a75..7f20ef6 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template rice_distribution [rand.dist.ext.hypergeometric] +// Class template hypergeometric_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/inequal.cc index c4d3c8c..4f20232 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template rice_distribution [rand.dist.ext.hypergeometric] +// Class template hypergeometric_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/serialize.cc index bd2d579..b9958c9 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template hypergeometric_distribution [rand.dist.ext.hypergeometric] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template hypergeometric_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/values.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/values.cc index ceaaf38..f730ec1 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/values.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/operators/values.cc @@ -21,9 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template hypergeometric_distribution -// [rand.dist.ext.hypergeometric] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template hypergeometric_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/requirements/typedefs.cc index 1263fde..1b5707e 100644 --- a/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/hypergeometric_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template hypergeometric_distribution [rand.dist.ext.hypergeometric] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template hypergeometric_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/cons/default.cc index b0c53f8..290423c 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template k_distribution [rand.dist.ext.k] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template k_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/cons/parms.cc index 0f1ae6f..a72f9bc 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template k_distribution [rand.dist.ext.k] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template k_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/equal.cc index 576322c..0c88a1c 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template k_distribution [rand.dist.ext.k] +// Class template k_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/inequal.cc index d24a5e0..c625e5a 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template k_distribution [rand.dist.ext.k] +// Class template k_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/serialize.cc index e4350a5..04faec1 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template k_distribution [rand.dist.ext.k] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template k_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/k_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/k_distribution/requirements/typedefs.cc index 5c5948b..3cca9ab 100644 --- a/libstdc++-v3/testsuite/ext/random/k_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/k_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template k_distribution [rand.dist.ext.k] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template k_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/default.cc index 3b4c943..4ca678a 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template logistic_distribution [rand.dist.ext.logistic] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template logistic_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/parms.cc index fed74f8..f77e1bc 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template logistic_distribution [rand.dist.ext.logistic] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template logistic_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/equal.cc index 4f85192..8ad5a13 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template logistic_distribution [rand.dist.ext.logistic] +// Class template logistic_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/inequal.cc index 6d9ff42..7654bc3 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template logistic_distribution [rand.dist.ext.logistic] +// Class template logistic_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/serialize.cc index df071ee..84902db 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template logistic_distribution [rand.dist.ext.logistic] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template logistic_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/logistic_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/logistic_distribution/requirements/typedefs.cc index ff018cf..631a0da 100644 --- a/libstdc++-v3/testsuite/ext/random/logistic_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/logistic_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template logistic_distribution [rand.dist.ext.logistic] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template logistic_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/default.cc index 1b6c3421..185b14a 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template nakagami_distribution [rand.dist.ext.nakagami] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template nakagami_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/parms.cc index 25a7c9c..95c5b12 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template nakagami_distribution [rand.dist.ext.nakagami] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template nakagami_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/equal.cc index 058373a..f45b8a7 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template nakagami_distribution [rand.dist.ext.nakagami] +// Class template nakagami_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/inequal.cc index 2a7c308..4f0315e 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template nakagami_distribution [rand.dist.ext.nakagami] +// Class template nakagami_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/serialize.cc index fb7cc28..eedfd84 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template nakagami_distribution [rand.dist.ext.nakagami] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template nakagami_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc index 9718039..e51d622 100644 --- a/libstdc++-v3/testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/nakagami_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template nakagami_distribution [rand.dist.ext.nakagami] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template nakagami_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/default.cc index 0bc4e42..6a5b68f 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template pareto_distribution [rand.dist.ext.pareto] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template pareto_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/parms.cc index c8cccc4..93f4819 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template pareto_distribution [rand.dist.ext.pareto] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template pareto_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/equal.cc index 380820e..7daf67b 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template pareto_distribution [rand.dist.ext.pareto] +// Class template pareto_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/inequal.cc index db18b1a..e3c73ae 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template pareto_distribution [rand.dist.ext.pareto] +// Class template pareto_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/serialize.cc index c64f920..ed032a1 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template pareto_distribution [rand.dist.ext.pareto] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template pareto_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/pareto_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/pareto_distribution/requirements/typedefs.cc index d21917d..08ff72e 100644 --- a/libstdc++-v3/testsuite/ext/random/pareto_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/pareto_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template pareto_distribution [rand.dist.ext.pareto] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template pareto_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/default.cc index 44907df..5b29710 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template rice_distribution [rand.dist.ext.rice] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template rice_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/parms.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/parms.cc index cac284f..7ba775f 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/parms.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/cons/parms.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template rice_distribution [rand.dist.ext.rice] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template rice_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/equal.cc index 896dd0f..ab38de1 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template rice_distribution [rand.dist.ext.rice] +// Class template rice_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/inequal.cc index 8c9bea3..3b9b430 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// 26.5.8.4.5 Class template rice_distribution [rand.dist.ext.rice] +// Class template rice_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/serialize.cc index 2f7dea3..3a3c7af 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template rice_distribution [rand.dist.ext.rice] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template rice_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/rice_distribution/requirements/typedefs.cc b/libstdc++-v3/testsuite/ext/random/rice_distribution/requirements/typedefs.cc index ab08583..d2351f8 100644 --- a/libstdc++-v3/testsuite/ext/random/rice_distribution/requirements/typedefs.cc +++ b/libstdc++-v3/testsuite/ext/random/rice_distribution/requirements/typedefs.cc @@ -21,8 +21,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template rice_distribution [rand.dist.ext.rice] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template rice_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include diff --git a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/cons/default.cc b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/cons/default.cc index fb48fe2..9e3da86 100644 --- a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/cons/default.cc +++ b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/cons/default.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// 26.4.8.3.* Class template uniform_in_sphere [rand.dist.ext.uniform_on_sphere] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] +// Class template uniform_on_sphere +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/equal.cc b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/equal.cc index f5b8d17..83f7dd9 100644 --- a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/equal.cc +++ b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/equal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// Class template uniform_on_sphere_distribution [rand.dist.ext.uniform_on_sphere] +// Class template uniform_on_sphere_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/generate.cc b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/generate.cc index c402444..deccbb2 100644 --- a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/generate.cc +++ b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/generate.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// Class template uniform_on_sphere_distribution [rand.dist.ext.uniform_on_sphere] -// Concept RandomNumberDistribution [rand.concept.dist] +// Class template uniform_on_sphere_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include diff --git a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/inequal.cc b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/inequal.cc index 2675652..1d30580 100644 --- a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/inequal.cc +++ b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/inequal.cc @@ -20,7 +20,7 @@ // with this library; see the file COPYING3. If not see // . -// Class template uniform_on_sphere_distribution [rand.dist.ext.uniform_on_sphere] +// Class template uniform_on_sphere_distribution #include #include diff --git a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/serialize.cc b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/serialize.cc index e9a758c..ee90a05 100644 --- a/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/serialize.cc +++ b/libstdc++-v3/testsuite/ext/random/uniform_on_sphere_distribution/operators/serialize.cc @@ -20,8 +20,8 @@ // with this library; see the file COPYING3. If not see // . -// Class template uniform_on_sphere_distribution [rand.dist.ext.uniform_on_sphere] -// Concept RandomNumberDistribution [rand.concept.dist] +// Class template uniform_on_sphere_distribution +// 26.5.1.6 Random number distribution requirements [rand.req.dist] #include #include