freebsd-dev/source/Symbol/ClangNamespaceDecl.cpp
Ed Maste f034231a6a Import lldb as of SVN r188801
(A number of files not required for the FreeBSD build have been removed.)

Sponsored by:	DARPA, AFRL
2013-08-23 17:46:38 +00:00

26 lines
625 B
C++

//===-- 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();
}
}