diff --git a/include/dbus-c++/types.h b/include/dbus-c++/types.h index 9f8bf0d..ed81726 100644 --- a/include/dbus-c++/types.h +++ b/include/dbus-c++/types.h @@ -145,6 +145,7 @@ struct type } }; +template <> struct type { static std::string sig(){ return "v"; } }; template <> struct type { static std::string sig(){ return "y"; } }; template <> struct type { static std::string sig(){ return "b"; } }; template <> struct type { static std::string sig(){ return "n"; } }; @@ -157,7 +158,7 @@ template <> struct type { static std::string sig(){ return "d"; template <> struct type { static std::string sig(){ return "s"; } }; template <> struct type { static std::string sig(){ return "o"; } }; template <> struct type { static std::string sig(){ return "g"; } }; -template <> struct type { static std::string sig(){ return ""; } }; +template <> struct type { static std::string sig(){ return ""; } }; template struct type< std::vector >