Deepak Kodihalli | 5650b39 | 2017-03-02 04:40:27 -0600 | [diff] [blame] | 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 | { |
Patrick Williams | 50d5d26 | 2017-05-01 22:39:35 -0500 | [diff] [blame] | 17 | % for key, value in sorted(calloutsMap.items()): |
Deepak Kodihalli | 5650b39 | 2017-03-02 04:40:27 -0600 | [diff] [blame] | 18 | std::make_tuple("${key}", "${value}"), |
| 19 | % endfor |
| 20 | }; |
| 21 | |
| 22 | } // namespace logging |
| 23 | } // namespace phosphor |