| 257 | { |
| 258 | template<typename T> |
| 259 | static constexpr auto call(T & x) |
| 260 | { |
| 261 | static_assert( |
| 262 | sizeof(T) && false, |
| 263 | "It looks like you're trying to use a struct larger than " |
| 264 | "the limit."); |
| 265 | } |
| 266 | }; |
| 267 | |
| 268 | template<typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected