Skip to content

Commit

Permalink
Merge branch '184-fix-compilation-error-master' into 'master'
Browse files Browse the repository at this point in the history
Resolve "fix compilation error master"

Closes #184

See merge request OPAL/Libraries/ippl!193
  • Loading branch information
Arc676 committed Jul 10, 2023
2 parents ffa9e9c + 273b2df commit 75fcd6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alpine/ChargedParticles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,13 +672,13 @@ class ChargedParticles : public ippl::ParticleBase<PLayout> {
ippl::Comm->barrier();
}

VField_t<T, Dim>::HostMirror getEMirror() const {
typename VField_t<T, Dim>::HostMirror getEMirror() const {
auto Eview = E_m.getHostMirror();
updateEMirror(Eview);
return Eview;
}

void updateEMirror(VField_t<T, Dim>::HostMirror& mirror) const {
void updateEMirror(typename VField_t<T, Dim>::HostMirror& mirror) const {
Kokkos::deep_copy(mirror, E_m.getView());
}

Expand Down

0 comments on commit 75fcd6c

Please sign in to comment.