aboutsummaryrefslogtreecommitdiff
path: root/src/os/linux/vm/decoder_linux.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/linux/vm/decoder_linux.cpp')
-rw-r--r--src/os/linux/vm/decoder_linux.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/os/linux/vm/decoder_linux.cpp b/src/os/linux/vm/decoder_linux.cpp
index 88da33b65..e46239694 100644
--- a/src/os/linux/vm/decoder_linux.cpp
+++ b/src/os/linux/vm/decoder_linux.cpp
@@ -23,11 +23,11 @@
*/
#include "prims/jvm.h"
-#include "utilities/decoder.hpp"
+#include "utilities/decoder_elf.hpp"
#include <cxxabi.h>
-bool Decoder::demangle(const char* symbol, char *buf, int buflen) {
+bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) {
int status;
char* result;
size_t size = (size_t)buflen;
@@ -43,3 +43,4 @@ bool Decoder::demangle(const char* symbol, char *buf, int buflen) {
}
return false;
}
+