aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp')
-rw-r--r--contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp b/contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp
deleted file mode 100644
index 568b0263f0fe..000000000000
--- a/contrib/llvm/tools/lldb/source/Symbol/ClangNamespaceDecl.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//===-- ClangNamespaceDecl.cpp ----------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "lldb/Symbol/ClangNamespaceDecl.h"
-
-#include "clang/AST/Decl.h"
-
-namespace lldb_private {
-
-std::string
-ClangNamespaceDecl::GetQualifiedName () const
-{
- if (m_namespace_decl)
- return m_namespace_decl->getQualifiedNameAsString();
- return std::string();
-}
-
-
-}