string 更新

This commit is contained in:
bolero-MURAKAMI 2011-09-26 01:56:47 +09:00
parent f5411a0336
commit 3f8d532b79
3 changed files with 352 additions and 69 deletions

View file

@ -171,7 +171,7 @@ namespace sprout {
// swap
//
template<typename T, std::size_t N>
SPROUT_CONSTEXPR inline void swap(sprout::array<T, N>& lhs, sprout::array<T, N>& rhs) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs))) {
inline void swap(sprout::array<T, N>& lhs, sprout::array<T, N>& rhs) SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(lhs.swap(rhs))) {
lhs.swap(rhs);
}
@ -290,3 +290,4 @@ namespace std {
} // namespace std
#endif // #ifndef SPROUT_ARRAY_HPP