silence warning about partial x2lamda overload

This commit is contained in:
Dan Ibanez 2016-12-21 08:00:42 -07:00
parent 8b5e15e979
commit 992becc75f
1 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,10 @@ class DomainKokkos : public Domain {
void image_flip(int, int, int);
void x2lamda(int);
void lamda2x(int);
// these lines bring in the x2lamda signatures from Domain
// that are not overloaded here
using Domain::x2lamda;
using Domain::lamda2x;
int closest_image(const int, int) const;