Clean-up: ensure all template parameter names end with Type
[lttng-tools.git] / src / common / format.hpp
index b586fd489f8f934f8ace25808c7e19ce2acd4fe9..67509c275bad365ee23c2bd86ec7ab6fe44df5aa 100644 (file)
@@ -26,8 +26,9 @@ DIAGNOSTIC_POP
 namespace fmt {
 template <>
 struct formatter<std::type_info> : formatter<std::string> {
-       template <typename FormatCtx>
-       typename FormatCtx::iterator format(const std::type_info& type_info, FormatCtx& ctx)
+       template <typename FormatContextType>
+       typename FormatContextType::iterator format(const std::type_info& type_info,
+                                                   FormatContextType& ctx)
        {
                int status;
                auto demangled_name =
This page took 0.022361 seconds and 4 git commands to generate.