- changed code formating from tabs to spaces and others
- used astyle with this option:
--style=ansi --indent=spaces=2 -M --pad-oper --unpad-paren --pad-header --align-pointer=name --lineend=linux
For example "(aii)" produced:
member(const ::DBus::Struct< std::vector< int32_t, int32_t > >& arg)
And now it produces:
member(const ::DBus::Struct< std::vector< int32_t >, int32_t >& arg)
For example "((i)i)" produced:
member(const ::DBus::Struct< ::DBus::Struct< int32_t >int32_t >& arg)
And now it produces:
member(const ::DBus::Struct< ::DBus::Struct< int32_t >, int32_t >& arg)