diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-11-10 00:59:22 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-11-10 00:59:22 +0000 |
commit | 8998f10e553fbca8db6cbce1cc1b097055b26b16 (patch) | |
tree | e1f70ca5d645dab9b9b77683a6438adc7aaa86e8 /clang/lib/AST/DeclGroup.cpp | |
parent | a73960213eac65cbb099a52318035cf4539b7703 (diff) | |
download | bcm5719-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.cpp | 6 |
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) { |