Skip to content

Commit b36e1b6

Browse files
committed
Just rename, no clang-format
1 parent 2bd40f4 commit b36e1b6

File tree

20 files changed

+60
-40
lines changed

20 files changed

+60
-40
lines changed

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.bernoulli/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::bernoulli_distribution dist) {
23+
void test(std::bernoulli_distribution dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.bin/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::binomial_distribution<int> dist) {
23+
void test(std::binomial_distribution<int> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.geo/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313

1414
#include <random>
1515

16-
template <class Int>
16+
template<class Int>
1717
struct G {
1818
using result_type = Int;
1919
result_type operator()();
2020
static constexpr result_type min() { return 0; }
2121
static constexpr result_type max() { return 255; }
2222
};
2323

24-
void test(std::geometric_distribution<int> dist) {
24+
void test(std::geometric_distribution<int> dist)
25+
{
2526
G<int> badg;
2627
G<unsigned> okg;
2728

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.bern/rand.dist.bern.negbin/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313

1414
#include <random>
1515

16-
template <class Int>
16+
template<class Int>
1717
struct G {
1818
using result_type = Int;
1919
result_type operator()();
2020
static constexpr result_type min() { return 0; }
2121
static constexpr result_type max() { return 255; }
2222
};
2323

24-
void test(std::negative_binomial_distribution<int> dist) {
24+
void test(std::negative_binomial_distribution<int> dist)
25+
{
2526
G<int> badg;
2627
G<unsigned> okg;
2728

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.cauchy/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::cauchy_distribution<double> dist) {
23+
void test(std::cauchy_distribution<double> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.chisq/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::chi_squared_distribution<double> dist) {
23+
void test(std::chi_squared_distribution<double> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.f/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@
1313

1414
#include <random>
1515

16-
template <class Int>
16+
template<class Int>
1717
struct G {
1818
using result_type = Int;
1919
result_type operator()();
2020
static constexpr result_type min() { return 0; }
2121
static constexpr result_type max() { return 255; }
2222
};
2323

24-
void test(std::fisher_f_distribution<double> dist) {
24+
void test(std::fisher_f_distribution<double> dist)
25+
{
2526
G<int> badg;
2627
G<unsigned> okg;
2728

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.lognormal/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::lognormal_distribution<double> dist) {
23+
void test(std::lognormal_distribution<double> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.normal/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::normal_distribution<double> dist) {
23+
void test(std::normal_distribution<double> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

libcxx/test/libcxx/numerics/rand/rand.dist/rand.dist.norm/rand.dist.norm.t/bad_engine.verify.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212

1313
#include <random>
1414

15-
template <class Int>
15+
template<class Int>
1616
struct G {
1717
using result_type = Int;
1818
result_type operator()();
1919
static constexpr result_type min() { return 0; }
2020
static constexpr result_type max() { return 255; }
2121
};
2222

23-
void test(std::student_t_distribution<double> dist) {
23+
void test(std::student_t_distribution<double> dist)
24+
{
2425
G<int> badg;
2526
G<unsigned> okg;
2627

0 commit comments

Comments
 (0)