Parcourir la Source

Add value support for unsigned/signed char

Ole il y a 10 ans
Parent
commit
8a4c63f324
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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)