Marri Devender Rao | 0deb287 | 2018-11-12 07:45:54 -0600 | [diff] [blame] | 1 | ## This file is a template. The comment below is emitted |
| 2 | ## into the rendered file; feel free to edit this file. |
| 3 | // !!! WARNING: This is a GENERATED Code..Please do NOT Edit !!! |
| 4 | #include <map> |
| 5 | using EType = std::string; |
| 6 | using Error = std::string; |
| 7 | using ErrorList = std::vector<Error>; |
| 8 | using ErrorMap = std::map<EType, std::vector<Error>>; |
| 9 | |
| 10 | const ErrorMap errorMap = { |
| 11 | % for key, errors in errDict.items(): |
| 12 | {"${key}", { |
| 13 | % for error in errors: |
| 14 | "${error}", |
| 15 | % endfor |
| 16 | }}, |
| 17 | % endfor |
| 18 | }; |