This commit is contained in:
Tatsuhiro Tsujikawa 2015-10-25 11:31:55 +09:00
parent 907798707c
commit b832caccd4
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ make_unique(size_t size) {
return std::unique_ptr<T>(new typename std::remove_extent<T>::type[size]());
}
// std::forward is conexpr since C++14
// std::forward is constexpr since C++14
template <typename... T>
constexpr std::array<
typename std::decay<typename std::common_type<T...>::type>::type,