blob: 88c7494e557be194e58d45409cef0aca41b0c795 [file] [log] [blame]
Sean Callanan5e9e1992011-10-26 01:06:27 +00001//===-- VerifyDecl.cpp ------------------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Sean Callanan5e9e1992011-10-26 01:06:27 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "lldb/Symbol/VerifyDecl.h"
10#include "clang/AST/DeclBase.h"
11
Kate Stoneb9c1b512016-09-06 20:57:50 +000012void lldb_private::VerifyDecl(clang::Decl *decl) { decl->getAccess(); }