| 286 | |
| 287 | template<typename T> |
| 288 | static T ValueOrDefault(bool b, T v) |
| 289 | { |
| 290 | if(b) { |
| 291 | return v; |
| 292 | } |
| 293 | |
| 294 | return {}; |
| 295 | } |
| 296 | //----------------------------------------------------------------------------- |
| 297 | |
| 298 | template<typename T> |
no outgoing calls
no test coverage detected