summaryrefslogtreecommitdiffstats
path: root/callouts/callouts-gen.mako.hpp
blob: 7d28a3a923b3b8081acb5c8ab64abef4ded38ab7 (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.iteritems()):
    std::make_tuple("${key}", "${value}"),
% endfor
};

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