summaryrefslogtreecommitdiffstats
path: root/ue5
diff options
context:
space:
mode:
Diffstat (limited to 'ue5')
-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 {