]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/include/lldb/Symbol/VerifyDecl.h
Unbreak DRM KMS build by adding the needed compatibility field in the LinuxKPI.
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lldb / include / lldb / Symbol / VerifyDecl.h
1 //===-- VerifyDecl.h --------------------------------------------*- 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 #ifndef lldb_VariableList_h_
10 #define lldb_VariableList_h_
11
12 #include "lldb/Core/ClangForward.h"
13
14 namespace lldb_private {
15 void VerifyDecl(clang::Decl *decl);
16 }
17
18 #endif