summaryrefslogtreecommitdiff
path: root/lldb/include
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include')
-rw-r--r--lldb/include/lldb/Core/CxaDemangle.h21
-rw-r--r--lldb/include/lldb/Core/FastDemangle.h24
2 files changed, 0 insertions, 45 deletions
diff --git a/lldb/include/lldb/Core/CxaDemangle.h b/lldb/include/lldb/Core/CxaDemangle.h
deleted file mode 100644
index 0cd54fb36a3..00000000000
--- a/lldb/include/lldb/Core/CxaDemangle.h
+++ /dev/null
@@ -1,21 +0,0 @@
-//===-- CxaDemangle.h -------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef liblldb_CxaDemangle_h_
-#define liblldb_CxaDemangle_h_
-
-namespace lldb_private
-{
-
- char*
- __cxa_demangle(const char* mangled_name, char* buf, size_t* n, int* status);
-
-}
-
-#endif
diff --git a/lldb/include/lldb/Core/FastDemangle.h b/lldb/include/lldb/Core/FastDemangle.h
deleted file mode 100644
index cd6128c7303..00000000000
--- a/lldb/include/lldb/Core/FastDemangle.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- FastDemangle.h ------------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef liblldb_FastDemangle_h_
-#define liblldb_FastDemangle_h_
-
-namespace lldb_private
-{
-
- char *
- FastDemangle(const char *mangled_name);
-
- char *
- FastDemangle(const char *mangled_name, long mangled_name_length);
-
-}
-
-#endif