Skip to content
  • Kenneth Moreland's avatar
    Add default constructors/destructors/assignment to CellSet classes · c7e9c1b6
    Kenneth Moreland authored
    The CellSet classes all exclusively work in the control environment.
    However, CUDA likes to add __device__ to constructors, destructors, and
    assignment operators it automatically adds. This in turn causes warnings
    about the __device__ function using host-only classes (like
    boost::shared_ptr). Solve this problem by adding explicit methods for
    all of these.
    c7e9c1b6