Skip to content
Snippets Groups Projects
Commit b362e7d0 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] EigenVector: cast size to IndexType.

parent cfb407ab
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ public: ...@@ -43,7 +43,7 @@ public:
EigenVector(EigenVector const& src) = default; EigenVector(EigenVector const& src) = default;
/// return a vector length /// return a vector length
IndexType size() const { return _vec.size(); } IndexType size() const { return static_cast<IndexType>(_vec.size()); }
/// return a start index of the active data range /// return a start index of the active data range
IndexType getRangeBegin() const { return 0;} IndexType getRangeBegin() const { return 0;}
......
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