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

@ -604,6 +604,9 @@ public:
}
};
template <typename T>
using crange_array = range_array<typename std::add_const<T>::type>;
} }
#endif