Refinement

This commit is contained in:
Baptiste Wicht 2014-04-06 17:12:29 +02:00
parent 64b2e8d77a
commit 2df7dac536

View File

@ -27,11 +27,11 @@ public:
return __data[pos];
}
const T& operator[](size_type pos) const {
constexpr const T& operator[](size_type pos) const {
return __data[pos];
}
size_type size(){
constexpr size_type size() const {
return N;
}