| 230 | |
| 231 | template<typename T, typename InItr> |
| 232 | static void apply_globals(InItr begin, InItr end, T &t) |
| 233 | { |
| 234 | while (begin != end) |
| 235 | { |
| 236 | t.add_global_const(begin->first, begin->second); |
| 237 | ++begin; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | template<typename T, typename InItr> |
| 242 | static void apply_single(InItr begin, InItr end, T &t) |
nothing calls this directly
no test coverage detected