array: don't use const size member

const members tend to prohibit copy construction
This commit is contained in:
Danny Robson 2018-12-19 17:14:49 +11:00
parent f648ad9810
commit f3886d6089

View File

@ -95,6 +95,6 @@ namespace cruft {
T objects[S];
} m_data;
const std::size_t m_size;
std::size_t m_size;
};
}