Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
lolengine
/
lol
réplica de
https://github.com/lolengine/lol
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
base: add Array::Data() method to access the underlying buffer.
undefined
Sam Hocevar
hace 11 años
padre
42381d33a4
commit
231b99714f
Se han
modificado 1 ficheros
con
10 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+10
-0
src/lol/base/array.h
+ 10
- 0
src/lol/base/array.h
Ver fichero
@@ -136,6 +136,16 @@ public:
return m_data[m_count - 1];
}
inline Element *Data()
{
return m_data;
}
inline Element const *Data() const
{
return m_data;
}
inline Element const& Last() const
{
ASSERT(m_count > 0);
Escribir
Vista previa
Cargando…
Cancelar
Guardar