kokkos-execution 0.0.1
Loading...
Searching...
No Matches
immovable.hpp
Go to the documentation of this file.
1#ifndef KOKKOS_EXECUTION_IMPL_IMMOVABLE_HPP
2#define KOKKOS_EXECUTION_IMPL_IMMOVABLE_HPP
3
19struct Immovable {
20 Immovable() = default;
21 Immovable(Immovable&&) = delete;
23 Immovable(const Immovable&) = delete;
24 Immovable& operator=(const Immovable&) = delete;
25 ~Immovable() = default;
26};
27
28} // namespace Kokkos::Execution::Impl
29
30#endif // KOKKOS_EXECUTION_IMPL_IMMOVABLE_HPP
Immovable & operator=(Immovable &&)=delete
Immovable(Immovable &&)=delete
Immovable & operator=(const Immovable &)=delete
Immovable(const Immovable &)=delete