Skip to content
Snippets Groups Projects
Commit d1c11df4 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added more unsigned types to param-types.h

parent 8b0a9960
No related branches found
No related tags found
No related merge requests found
......@@ -22,8 +22,11 @@ template<> inline String getType< bool >() { return String( "bool" ); };
template<> inline String getType< short int >() { return String( "short int" ); };
template<> inline String getType< int >() { return String( "int" ); };
template<> inline String getType< long int >() { return String( "long int" ); };
template<> inline String getType< unsigned short >() { return String( "unsigned short" ); };
template<> inline String getType< unsigned int >() { return String( "unsigned int" ); };
template<> inline String getType< unsigned long >() { return String( "unsigned long" ); };
template<> inline String getType< char >() { return String( "char" ); };
template<> inline String getType< unsigned char >() { return String( "unsigned char" ); };
template<> inline String getType< float >() { return String( "float" ); };
template<> inline String getType< double >() { return String( "double" ); };
template<> inline String getType< long double >() { return String( "long double" ); };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment