diff --git a/src/bin/debug/strace/TypeHandler.h b/src/bin/debug/strace/TypeHandler.h index ca11583dd4..b4d7ed752b 100644 --- a/src/bin/debug/strace/TypeHandler.h +++ b/src/bin/debug/strace/TypeHandler.h @@ -149,6 +149,14 @@ DEFINE_FACTORY(uint_ptr, unsigned int *); DEFINE_FACTORY(ulong_ptr, unsigned long *); DEFINE_FACTORY(ulonglong_ptr, unsigned long long *); +template<> +struct TypeHandlerFactory { + static inline TypeHandler *Create() + { + return TypeHandlerFactory::Create(); + } +}; + // partial specialization for generic pointers template struct TypeHandlerFactory {