| 51 | #define FMT "%s" |
| 52 | |
| 53 | template <typename T> static void* MetaHelper(const char* str) { |
| 54 | ADD_FAILURE() << "non-specialzer was called"; |
| 55 | return nullptr; |
| 56 | } |
| 57 | |
| 58 | template <> void* MetaHelper<RawspeedException>(const char* str) { |
| 59 | ThrowRSE(FMT, str); |
nothing calls this directly
no outgoing calls
no test coverage detected