aboutsummaryrefslogtreecommitdiff
path: root/source/Symbol/VerifyDecl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Symbol/VerifyDecl.cpp')
-rw-r--r--source/Symbol/VerifyDecl.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/Symbol/VerifyDecl.cpp b/source/Symbol/VerifyDecl.cpp
new file mode 100644
index 000000000000..765568040ece
--- /dev/null
+++ b/source/Symbol/VerifyDecl.cpp
@@ -0,0 +1,16 @@
+//===-- VerifyDecl.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/Symbol/VerifyDecl.h"
+#include "clang/AST/DeclBase.h"
+
+void lldb_private::VerifyDecl (clang::Decl *decl)
+{
+ decl->getAccess();
+}