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

[MeL] Use int for component counting.

parent 87050c55
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ public: ...@@ -66,7 +66,7 @@ public:
} }
//! Returns the value for the given component stored in the given tuple. //! Returns the value for the given component stored in the given tuple.
PROP_VAL_TYPE& getComponent(std::size_t tuple_index, std::size_t component) PROP_VAL_TYPE& getComponent(std::size_t tuple_index, int component)
{ {
assert(component < _n_components); assert(component < _n_components);
assert(tuple_index < getNumberOfTuples()); assert(tuple_index < getNumberOfTuples());
...@@ -76,7 +76,7 @@ public: ...@@ -76,7 +76,7 @@ public:
//! Returns the value for the given component stored in the given tuple. //! Returns the value for the given component stored in the given tuple.
PROP_VAL_TYPE const& getComponent(std::size_t tuple_index, PROP_VAL_TYPE const& getComponent(std::size_t tuple_index,
std::size_t component) const int component) const
{ {
assert(component < _n_components); assert(component < _n_components);
assert(tuple_index < getNumberOfTuples()); assert(tuple_index < getNumberOfTuples());
...@@ -215,7 +215,7 @@ public: ...@@ -215,7 +215,7 @@ public:
} }
//! Returns the value for the given component stored in the given tuple. //! Returns the value for the given component stored in the given tuple.
T const& getComponent(std::size_t tuple_index, std::size_t component) const T const& getComponent(std::size_t tuple_index, int component) const
{ {
assert(component < _n_components); assert(component < _n_components);
assert(tuple_index < getNumberOfTuples()); assert(tuple_index < getNumberOfTuples());
......
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