Marri Devender Rao | e5576bf | 2018-04-16 05:56:11 -0500 | [diff] [blame] | 1 | const std::array<std::string, ${len(pathinstances)}> paths = { |
2 | % for p in paths: | ||||
3 | "${p.name}"s, | ||||
4 | % endfor | ||||
5 | }; | ||||
6 | |||||
7 | const std::array<std::string, ${len(pathwatches)}> pathwatches = {{ | ||||
8 | % for w in pathwatches: | ||||
9 | paths[${w.pathinstances}], | ||||
10 | % endfor | ||||
11 | }}; |