Skip to content

Commit

Permalink
Remove useless typename
Browse files Browse the repository at this point in the history
  • Loading branch information
Rombur committed Jan 31, 2024
1 parent 2feec70 commit 80fcff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/MaterialProperty.hh
Original file line number Diff line number Diff line change
Expand Up @@ -303,19 +303,19 @@ private:
// the mechanical properties can only exist on the host while the thermal ones
// can be on the host or the device.
Kokkos::View<double *[g_n_mechanical_state_properties][table_size][2],
typename dealii::MemorySpace::Host::kokkos_space>
dealii::MemorySpace::Host::kokkos_space>
_mechanical_properties_tables_host;
/**
* Mechanical properties which have been set using polynomials.
*/
Kokkos::View<double *[g_n_mechanical_state_properties][polynomial_order + 1],
typename dealii::MemorySpace::Host::kokkos_space>
dealii::MemorySpace::Host::kokkos_space>
_mechanical_properties_polynomials_host;
/**
* Temperature independent mechanical properties.
*/
Kokkos::View<double *[g_n_mechanical_state_properties],
typename dealii::MemorySpace::Host::kokkos_space>
dealii::MemorySpace::Host::kokkos_space>
_mechanical_properties_host;
/**
* Discontinuous piecewise constant finite element.
Expand Down

0 comments on commit 80fcff8

Please sign in to comment.