blob: b04f00ed2478822022ff8d43d63e104882e32c21 [file] [log] [blame]
Marri Devender Rao0deb2872018-11-12 07:45:54 -06001## 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>
5using EType = std::string;
6using Error = std::string;
7using ErrorList = std::vector<Error>;
8using ErrorMap = std::map<EType, std::vector<Error>>;
9
10const ErrorMap errorMap = {
11% for key, errors in errDict.items():
12 {"${key}", {
13 % for error in errors:
14 "${error}",
15 % endfor
16 }},
17% endfor
18};