blob: 3b0609a6ea8fe9b9dd1bfcd71869a14aab46c89d [file] [log] [blame]
Marri Devender Raoe5576bf2018-04-16 05:56:11 -05001const std::array<std::string, ${len(pathinstances)}> paths = {
2% for p in paths:
3 "${p.name}"s,
4% endfor
5};
6
7const std::array<std::string, ${len(pathwatches)}> pathwatches = {{
8% for w in pathwatches:
9 paths[${w.pathinstances}],
10% endfor
11}};