Skip to content

Commit 13a708d

Browse files
Committing clang-format changes
1 parent c52baeb commit 13a708d

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

packages/seacas/applications/nem_spread/ps_pario_const.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ struct Parallel_IO
2525
{
2626
int Dsk_List_Cnt{};
2727

28-
std::vector<int> Dsk_List{};
29-
int **RDsk_List{nullptr};
28+
std::vector<int> Dsk_List{};
29+
int **RDsk_List{nullptr};
3030

3131
int Num_Dsk_Ctrlrs{}; /* The number of disk controllers. */
3232
int Num_Dsks_PCtrlr{}; /* The number of disks per controller. */

packages/seacas/libraries/aprepro_lib/apr_exodus.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ namespace {
3838
}
3939
}
4040

41-
void add_name(int exoid, ex_entity_type ent_type, int64_t id, std::vector<char> &name, std::string &names)
41+
void add_name(int exoid, ex_entity_type ent_type, int64_t id, std::vector<char> &name,
42+
std::string &names)
4243
{
4344
std::string str_name;
4445
ex_get_name(exoid, ent_type, id, name.data());
@@ -314,7 +315,7 @@ namespace SEAMS {
314315
int max_name_length = ex_inquire_int(exoid, EX_INQ_DB_MAX_USED_NAME_LENGTH);
315316
ex_set_max_name_length(exoid, max_name_length);
316317
std::vector<char> name(max_name_length + 1);
317-
std::string str_name;
318+
std::string str_name;
318319

319320
if (info.num_elem_blk > 0) {
320321
auto array_data = aprepro->make_array(info.num_elem_blk, 1);

packages/seacas/libraries/aprepro_lib/strings.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ std::vector<std::string> build_strings()
5858
strings.emplace_back(R"({cd = tand(180/4)} {180-4*atand(cd)} $ tan(180/4))");
5959
strings.emplace_back(R"()");
6060
strings.emplace_back(R"(Test max, min, sign, dim, abs)");
61-
strings.emplace_back(R"({pmin = min(0.5, 1.0)} {nmin = min(-0.5, -1.0)} $ Should be 0.5, -1)");
62-
strings.emplace_back(R"({pmax = max(0.5, 1.0)} {nmax = max(-0.5, -1.0)} $ Should be 1.0, -0.5)");
61+
strings.emplace_back(
62+
R"({pmin = min(0.5, 1.0)} {nmin = min(-0.5, -1.0)} $ Should be 0.5, -1)");
63+
strings.emplace_back(
64+
R"({pmax = max(0.5, 1.0)} {nmax = max(-0.5, -1.0)} $ Should be 1.0, -0.5)");
6365
strings.emplace_back(R"({zero = 0} {sign(0.5, zero) + sign(0.5, -zero)} $ Should be 0 1)");
6466
strings.emplace_back(
6567
R"({nonzero = 1} {sign(0.5, nonzero) + sign(0.5, -nonzero)} $ Should be 1 0)");

0 commit comments

Comments
 (0)