Skip to content
Snippets Groups Projects
Commit c842c42f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove useless access members

parent b4770039
No related branches found
No related tags found
1 merge request!7Feature/itemvalue
......@@ -86,13 +86,6 @@ class SubItemValuePerItem<DataType,
return m_is_built;
}
KOKKOS_FORCEINLINE_FUNCTION
DataType& operator()(const size_t& j, const size_t& r)
{
Assert(m_is_built);
return m_values[m_host_row_map(j)+r];
}
// Following Kokkos logic, these classes are view and const view does allow
// changes in data
KOKKOS_FORCEINLINE_FUNCTION
......@@ -109,13 +102,6 @@ class SubItemValuePerItem<DataType,
return m_values.extent(0);
}
KOKKOS_FORCEINLINE_FUNCTION
DataType& operator[](const size_t& i)
{
Assert(m_is_built);
return m_values[i];
}
// Following Kokkos logic, these classes are view and const view does allow
// changes in data
KOKKOS_FORCEINLINE_FUNCTION
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment