remove inline initialization of seed

This commit is contained in:
Li-Ta Lo 2020-06-17 12:47:54 -06:00
parent e69308047b
commit 9bf6dea226

@ -47,7 +47,7 @@ struct PhiloxFunctor
private:
// This is logically a const, however, this make the Functor non-copyable which is required
// by VTKm infrastructure (e.g. ArrayHandleTransform.)
SeedType Seed{};
SeedType Seed;
}; // class PhiloxFunctor
} // namespace detail