Explorar el Código

Add value support for unsigned/signed char

Ole hace 10 años
padre
commit
8a4c63f324
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      lib/luwra/types.hpp

+ 2 - 0
lib/luwra/types.hpp

@@ -203,6 +203,8 @@ LUWRA_DEF_NUMERIC(Number, double)
 LUWRA_DEF_NUMERIC(Number, long double)
 
 // Integral types
+LUWRA_DEF_NUMERIC(Integer, signed   char)
+LUWRA_DEF_NUMERIC(Integer, unsigned char)
 LUWRA_DEF_NUMERIC(Integer, signed   short)
 LUWRA_DEF_NUMERIC(Integer, unsigned short)
 LUWRA_DEF_NUMERIC(Integer, signed   int)