aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/stubs/WTFStubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/masm/stubs/WTFStubs.cpp')
-rw-r--r--src/3rdparty/masm/stubs/WTFStubs.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/3rdparty/masm/stubs/WTFStubs.cpp b/src/3rdparty/masm/stubs/WTFStubs.cpp
index 828712b29a..3f10298f56 100644
--- a/src/3rdparty/masm/stubs/WTFStubs.cpp
+++ b/src/3rdparty/masm/stubs/WTFStubs.cpp
@@ -112,6 +112,13 @@ void WTFReportAssertionFailure(const char* file, int line, const char* function,
fprintf(stderr, "WTF failing assertion in %s, line %d, function %s: %s\n", file, line, function, assertion);
}
+void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...)
+{
+ // TODO: show the message, or remove this function completely. (The latter would probably be best.)
+ Q_UNUSED(format);
+ fprintf(stderr, "WTF failing assertion in %s, line %d, function %s: %s\n", file, line, function, assertion);
+}
+
void WTFReportBacktrace()
{
}