1254721Semaste//===-- VerifyDecl.h --------------------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste#ifndef lldb_VariableList_h_
11254721Semaste#define lldb_VariableList_h_
12254721Semaste
13254721Semaste#include "lldb/Core/ClangForward.h"
14254721Semaste
15254721Semastenamespace lldb_private
16254721Semaste{
17254721Semaste    void VerifyDecl (clang::Decl *decl);
18254721Semaste}
19254721Semaste
20254721Semaste#endif
21