Skip to content
Snippets Groups Projects
Commit 74c37def authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[container.eigen.dense] add const version of data

parent e288dc56
No related branches found
No related tags found
1 merge request!16[container.eigen.dense] add const version of data
Pipeline #58095 passed
......@@ -225,6 +225,11 @@ public:
return backend().data();
}
const DataType* data() const
{
return backend().data();
}
size_t data_size() const
{
return this->size();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment