Use standard types instead of typedefs wherever possible

This commit is contained in:
pd 2008-08-09 01:16:45 +02:00
parent efc594f888
commit f0a9278511
12 changed files with 90 additions and 100 deletions

View file

@ -87,16 +87,16 @@ const char *atomic_type_to_string(char t)
{
static struct { char type; const char *name; } atos[] =
{
{ 'y', "::DBus::Byte" },
{ 'b', "::DBus::Bool" },
{ 'n', "::DBus::Int16" },
{ 'q', "::DBus::UInt16" },
{ 'i', "::DBus::Int32" },
{ 'u', "::DBus::UInt32" },
{ 'x', "::DBus::Int64" },
{ 't', "::DBus::UInt64" },
{ 'd', "::DBus::Double" },
{ 's', "::DBus::String" },
{ 'y', "uint8_t" },
{ 'b', "bool" },
{ 'n', "int16_t" },
{ 'q', "uint16_t" },
{ 'i', "int32_t" },
{ 'u', "uint32_t" },
{ 'x', "int64_t" },
{ 't', "uint64_t" },
{ 'd', "double" },
{ 's', "std::string" },
{ 'o', "::DBus::Path" },
{ 'g', "::DBus::Signature" },
{ 'v', "::DBus::Variant" },