]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/source/Symbol/VerifyDecl.cpp
MFC r355940:
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lldb / source / Symbol / VerifyDecl.cpp
1 //===-- VerifyDecl.cpp ------------------------------------------*- C++ -*-===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "lldb/Symbol/VerifyDecl.h"
10 #include "clang/AST/DeclBase.h"
11
12 void lldb_private::VerifyDecl(clang::Decl *decl) {
13   assert(decl && "VerifyDecl called with nullptr?");
14   decl->getAccess();
15 }