summaryrefslogtreecommitdiffstats
path: root/test/std/numerics/rand/rand.dis/rand.dist.norm
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/numerics/rand/rand.dis/rand.dist.norm')
-rw-r--r--test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp3
-rw-r--r--test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp3
-rw-r--r--test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp3
-rw-r--r--test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp1
4 files changed, 0 insertions, 10 deletions
diff --git a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp
index d70d8f072..ca669dc41 100644
--- a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp
+++ b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp
@@ -31,7 +31,6 @@ int main()
{
{
typedef std::cauchy_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
const double a = 10;
@@ -47,7 +46,6 @@ int main()
}
{
typedef std::cauchy_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
const double a = -1.5;
@@ -63,7 +61,6 @@ int main()
}
{
typedef std::cauchy_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
const double a = .5;
diff --git a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp
index 3b54790ae..3261880c6 100644
--- a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp
+++ b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp
@@ -34,7 +34,6 @@ int main()
{
{
typedef std::chi_squared_distribution<> D;
- typedef D::param_type P;
typedef std::minstd_rand G;
G g;
D d(0.5);
@@ -74,7 +73,6 @@ int main()
}
{
typedef std::chi_squared_distribution<> D;
- typedef D::param_type P;
typedef std::minstd_rand G;
G g;
D d(1);
@@ -114,7 +112,6 @@ int main()
}
{
typedef std::chi_squared_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
D d(2);
diff --git a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp
index 4da7f2e70..8025880d8 100644
--- a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp
+++ b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp
@@ -51,7 +51,6 @@ int main()
// Purposefully only testing even integral values of m and n (for now)
{
typedef std::fisher_f_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
D d(2, 4);
@@ -69,7 +68,6 @@ int main()
}
{
typedef std::fisher_f_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
D d(4, 2);
@@ -87,7 +85,6 @@ int main()
}
{
typedef std::fisher_f_distribution<> D;
- typedef D::param_type P;
typedef std::mt19937 G;
G g;
D d(18, 20);
diff --git a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp
index e1084d3ef..2bf9204d3 100644
--- a/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp
+++ b/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp
@@ -34,7 +34,6 @@ int main()
{
{
typedef std::normal_distribution<> D;
- typedef D::param_type P;
typedef std::minstd_rand G;
G g;
D d(5, 4);