summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/DeclGroup.cpp
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2017-11-10 00:59:22 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2017-11-10 00:59:22 +0000
commit8998f10e553fbca8db6cbce1cc1b097055b26b16 (patch)
treee1f70ca5d645dab9b9b77683a6438adc7aaa86e8 /clang/lib/AST/DeclGroup.cpp
parenta73960213eac65cbb099a52318035cf4539b7703 (diff)
downloadbcm5719-llvm-8998f10e553fbca8db6cbce1cc1b097055b26b16.tar.gz
bcm5719-llvm-8998f10e553fbca8db6cbce1cc1b097055b26b16.zip
[AST] Fix some Clang-tidy modernize and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 317854
Diffstat (limited to 'clang/lib/AST/DeclGroup.cpp')
-rw-r--r--clang/lib/AST/DeclGroup.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/AST/DeclGroup.cpp b/clang/lib/AST/DeclGroup.cpp
index 2f95e1f1c34..f74ef9bbb83 100644
--- a/clang/lib/AST/DeclGroup.cpp
+++ b/clang/lib/AST/DeclGroup.cpp
@@ -1,4 +1,4 @@
-//===--- DeclGroup.cpp - Classes for representing groups of Decls -*- C++ -*-==//
+//===- DeclGroup.cpp - Classes for representing groups of Decls -----------===//
//
// The LLVM Compiler Infrastructure
//
@@ -13,7 +13,9 @@
#include "clang/AST/DeclGroup.h"
#include "clang/AST/ASTContext.h"
-#include "clang/AST/Decl.h"
+#include <cassert>
+#include <memory>
+
using namespace clang;
DeclGroup* DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) {
OpenPOWER on IntegriCloud