Skip to content

Commit d9cc984

Browse files
committed
Whitespace fixes
1 parent 5aba2c6 commit d9cc984

3 files changed

Lines changed: 6 additions & 13 deletions

File tree

examples/transient/transient_ex3/advection_system.C

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
namespace libMesh
3030
{
3131

32-
AdvectionSystem::AdvectionSystem (EquationSystems& es,
33-
const std::string& name,
34-
const unsigned int number)
32+
AdvectionSystem::AdvectionSystem (EquationSystems & es,
33+
const std::string & name,
34+
const unsigned int number)
3535
: Parent(es, name, number),
3636
_q1_var(0),
3737
_fe_order(CONSTANT),
@@ -149,6 +149,3 @@ void AdvectionSystem::print_info ()
149149
}
150150

151151
} // namespace libMesh
152-
153-
154-

examples/transient/transient_ex3/claw_system.C

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
namespace libMesh
3737
{
3838

39-
ClawSystem::ClawSystem (EquationSystems& es,
40-
const std::string& name,
41-
const unsigned int number)
39+
ClawSystem::ClawSystem (EquationSystems & es,
40+
const std::string & name,
41+
const unsigned int number)
4242
: Parent(es, name, number),
4343
_mass_matrix(SparseMatrix<Number>::build(es.comm())),
4444
_jump_matrix(SparseMatrix<Number>::build(es.comm())),
@@ -983,6 +983,3 @@ void ClawSystem::init_data ()
983983
}
984984

985985
} // namespace libMesh
986-
987-
988-

examples/transient/transient_ex3/transient_ex3.C

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,3 @@ Number initial_condition (const Point& p,
141141

142142
return std::exp( -100.*(std::pow(x-0.5,2.) + std::pow(y-0.5,2.)) );
143143
}
144-

0 commit comments

Comments
 (0)