blob: d8e836e3a8c75eaa27c0e88946e341231ad9e7d7 [file] [log] [blame]
//===-- SBType.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/API/SBType.h"
#include "lldb/Symbol/ClangASTContext.h"
using namespace lldb;
using namespace lldb_private;
bool
SBType::IsPointerType (void *opaque_type)
{
return ClangASTContext::IsPointerType (opaque_type);
}