Clean-up: ensure all template parameter names end with Type
[lttng-tools.git] / src / common / format.hpp
... / ...
CommitLineData
1/*
2 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7#ifndef LTTNG_FORMAT_H
8#define LTTNG_FORMAT_H
9
10#include <common/macros.hpp>
11
12#include <string>
13#include <cxxabi.h>
14
15DIAGNOSTIC_PUSH
16DIAGNOSTIC_IGNORE_SUGGEST_ATTRIBUTE_FORMAT
17DIAGNOSTIC_IGNORE_DUPLICATED_BRANCHES
18#define FMT_HEADER_ONLY
19#include <vendor/fmt/core.h>
20DIAGNOSTIC_POP
21
22/*
23 * Due to a bug in g++ < 7.1, this specialization must be enclosed in the fmt namespace,
24 * see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56480.
25 */
26namespace fmt {
27template <>
28struct formatter<std::type_info> : formatter<std::string> {
29 template <typename FormatContextType>
30 typename FormatContextType::iterator format(const std::type_info& type_info,
31 FormatContextType& ctx)
32 {
33 int status;
34 auto demangled_name =
35 abi::__cxa_demangle(type_info.name(), nullptr, nullptr, &status);
36 auto it = status == 0 ? formatter<std::string>::format(demangled_name, ctx) :
37 formatter<std::string>::format(type_info.name(), ctx);
38
39 free(demangled_name);
40 return it;
41 }
42};
43} /* namespace fmt */
44
45#endif /* LTTNG_FORMAT_H */
This page took 0.022048 seconds and 4 git commands to generate.