eina-cxx: Added crange_array template typedef

This commit is contained in:
Felipe Magno de Almeida 2016-05-26 16:46:23 -03:00
parent edd99d24ef
commit 396fd5e3e1
1 changed files with 4 additions and 1 deletions

View File

@ -603,7 +603,10 @@ public:
return rhs.size() == lhs.size() && std::equal(rhs.begin(), rhs.end(), lhs.begin());
}
};
template <typename T>
using crange_array = range_array<typename std::add_const<T>::type>;
} }
#endif