| 13023 | |
| 13024 | |
| 13025 | __declspec(noinline) |
| 13026 | ResultType ResultToken::Error(LPCTSTR aErrorText) |
| 13027 | { |
| 13028 | // Defining this overload separately rather than making aErrorInfo optional reduces code size |
| 13029 | // by not requiring the compiler to 'push' the second parameter's default value at each call site. |
| 13030 | return Error(aErrorText, _T("")); |
| 13031 | } |
| 13032 | |
| 13033 | __declspec(noinline) |
| 13034 | ResultType ResultToken::Error(LPCTSTR aErrorText, LPCTSTR aExtraInfo) |
no test coverage detected