Skip to content
Snippets Groups Projects
Commit 3fe20ea4 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[eigen] fix broken `get_entry_ref`s

parent d3aee474
No related branches found
No related tags found
No related merge requests found
......@@ -162,12 +162,12 @@ public:
protected:
inline ScalarType& get_entry_ref(const size_t ii)
{
return backend_[ii];
return (*backend_)[ii];
}
inline const ScalarType& get_entry_ref(const size_t ii) const
{
return backend_[ii];
return (*backend_)[ii];
}
public:
......
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