summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormanuel <manuel@nc8430>2009-06-03 19:44:44 +0200
committermanuel <manuel@nc8430>2009-06-03 19:44:44 +0200
commit6e3bff52c888c22d8a76c6ff741785f0463456e4 (patch)
tree7e883545f58a7f681ee9762cb1def82950ecb369
parent4225398c1cbb99808ddd1777b3c920731cd3d008 (diff)
downloadooprog-6e3bff52c888c22d8a76c6ff741785f0463456e4.tar.gz
ooprog-6e3bff52c888c22d8a76c6ff741785f0463456e4.tar.bz2
ooprog-6e3bff52c888c22d8a76c6ff741785f0463456e4.zip
better english
-rw-r--r--ue5/array.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ue5/array.hpp b/ue5/array.hpp
index 279ad7d..9c8a7e6 100644
--- a/ue5/array.hpp
+++ b/ue5/array.hpp
@@ -107,7 +107,7 @@ namespace Ti
107 T m_data[N]; 107 T m_data[N];
108 }; 108 };
109 109
110 /* std::move returns lvalue as rvalue */ 110 /* std::move makes rvalue from rvalue */
111 template<typename T, std::size_t N> 111 template<typename T, std::size_t N>
112 array<T, N>&& make_array() 112 array<T, N>&& make_array()
113 { 113 {