mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
StrFmt: print src_loc error as string
This commit is contained in:
parent
04df392866
commit
7a1a4541c0
2 changed files with 29 additions and 2 deletions
|
@ -8,6 +8,11 @@ namespace fmt
|
|||
{
|
||||
template <typename CharT, usz N, typename... Args>
|
||||
static std::string format(const CharT(&)[N], const Args&...);
|
||||
|
||||
#ifdef _WIN32
|
||||
// Get a string for a windows error (DWORD)
|
||||
std::string win_error_to_string(unsigned long error);
|
||||
#endif
|
||||
}
|
||||
|
||||
template <typename T, typename = void>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue