eina_cxx: Fix eina::array cend method recursive calling itself

@fix
This commit is contained in:
Vitor Sousa 2014-11-03 11:47:17 -02:00
parent ee81566ac8
commit fb5ba0f758
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ public:
}
const_iterator cend() const
{
return cend();
return end();
}
const_reverse_iterator crbegin() const
{