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
optim: better isnan() reimplementation.
legacy
Sam Hocevar
sam
hace 13 años
padre
824551e4af
commit
3402db36c3
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
test/half.cpp
+ 1
- 1
test/half.cpp
Ver fichero
@@ -30,7 +30,7 @@
static inline int isnan(float f)
{
union { float f; uint32_t x; } u = { f };
return (
~u.x << 1) < 0x00fffffe
u;
return (
u.x << 1) > 0xff000000
u;
}
#endif
Escribir
Vista previa
Cargando…
Cancelar
Guardar