We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2cc735 commit 9020877Copy full SHA for 9020877
1 file changed
library/Process.cpp
@@ -237,7 +237,7 @@ Process::~Process()
237
string Process::doReadClassName (void * vptr)
238
{
239
if (!checkValidAddress(vptr))
240
- throw std::runtime_error(std::format("invalid vtable ptr {}", vptr));
+ throw std::runtime_error(fmt::format("invalid vtable ptr {}", vptr));
241
242
char* rtti = Process::readPtr(((char*)vptr - sizeof(void*)));
243
#ifndef WIN32
0 commit comments