summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asmjit/src/asmjit/core/errorhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asmjit/src/asmjit/core/errorhandler.cpp')
-rw-r--r--3rdparty/asmjit/src/asmjit/core/errorhandler.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/3rdparty/asmjit/src/asmjit/core/errorhandler.cpp b/3rdparty/asmjit/src/asmjit/core/errorhandler.cpp
new file mode 100644
index 00000000000..ce2ad016af1
--- /dev/null
+++ b/3rdparty/asmjit/src/asmjit/core/errorhandler.cpp
@@ -0,0 +1,18 @@
+// This file is part of AsmJit project <https://asmjit.com>
+//
+// See asmjit.h or LICENSE.md for license and copyright information
+// SPDX-License-Identifier: Zlib
+
+#include "../core/api-build_p.h"
+#include "../core/errorhandler.h"
+
+ASMJIT_BEGIN_NAMESPACE
+
+ErrorHandler::ErrorHandler() noexcept {}
+ErrorHandler::~ErrorHandler() noexcept {}
+
+void ErrorHandler::handleError(Error err, const char* message, BaseEmitter* origin) {
+ DebugUtils::unused(err, message, origin);
+}
+
+ASMJIT_END_NAMESPACE