1 ## Note that this file is not auto generated, it is what generates the
2 ## callouts-gen.hpp file
3 // This file was autogenerated.  Do not edit!
4 // See callouts-gen.py for more details
5 #pragma once
6 
7 #include <string>
8 #include <tuple>
9 
10 namespace phosphor
11 {
12 namespace logging
13 {
14 
15 constexpr auto callouts =
16 {
17 % for key, value in sorted(calloutsMap.items()):
18     std::make_tuple("${key}", "${value}"),
19 % endfor
20 };
21 
22 } // namespace logging
23 } // namespace phosphor
24