Skip to content

Commit

Permalink
Indent
Browse files Browse the repository at this point in the history
  • Loading branch information
gassmoeller committed Nov 9, 2017
1 parent cfef058 commit 81b0eef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions include/aspect/simulator/assemblers/interface.h
Expand Up @@ -59,13 +59,13 @@ namespace aspect
struct ScratchBase
{
ScratchBase()
:
:
cell(),
face_number(numbers::invalid_unsigned_int)
{};

ScratchBase(const ScratchBase &scratch)
:
:
cell(scratch.cell),
face_number(scratch.face_number)
{};
Expand Down
8 changes: 4 additions & 4 deletions source/simulator/assemblers/interface.cc
Expand Up @@ -44,7 +44,7 @@ namespace aspect
const bool add_compaction_pressure,
const bool rebuild_matrix)
:
ScratchBase<dim>(),
ScratchBase<dim>(),

finite_element_values (mapping, finite_element, quadrature,
update_flags),
Expand All @@ -66,7 +66,7 @@ namespace aspect
StokesPreconditioner<dim>::
StokesPreconditioner (const StokesPreconditioner &scratch)
:
ScratchBase<dim>(scratch),
ScratchBase<dim>(scratch),

finite_element_values (scratch.finite_element_values.get_mapping(),
scratch.finite_element_values.get_fe(),
Expand Down Expand Up @@ -169,7 +169,7 @@ namespace aspect
const unsigned int n_compositional_fields,
const typename Simulator<dim>::AdvectionField &field)
:
ScratchBase<dim>(),
ScratchBase<dim>(),

finite_element_values (mapping,
finite_element, quadrature,
Expand Down Expand Up @@ -255,7 +255,7 @@ namespace aspect
AdvectionSystem<dim>::
AdvectionSystem (const AdvectionSystem &scratch)
:
ScratchBase<dim>(scratch),
ScratchBase<dim>(scratch),

finite_element_values (scratch.finite_element_values.get_mapping(),
scratch.finite_element_values.get_fe(),
Expand Down

0 comments on commit 81b0eef

Please sign in to comment.