summaryrefslogtreecommitdiffstats
path: root/callouts/callouts-gen.mako.hpp
blob: 285092ed811671fdfcf52dc2c8c8b4b28c2226c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Note that this file is not auto generated, it is what generates the
## callouts-gen.hpp file
// This file was autogenerated.  Do not edit!
// See callouts-gen.py for more details
#pragma once

#include <string>
#include <tuple>

namespace phosphor
{
namespace logging
{

constexpr auto callouts =
{
% for key, value in sorted(calloutsMap.items()):
    std::make_tuple("${key}", "${value}"),
% endfor
};

} // namespace logging
} // namespace phosphor
OpenPOWER on IntegriCloud