summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaLookup.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2015-10-18 20:32:12 +0000
committerNick Lewycky <nicholas@mxc.ca>2015-10-18 20:32:12 +0000
commit4b81fc87ad0d952bea640f3f39233a75cc73d8cb (patch)
tree49948237c1b8a75fc671df70095d8de4a3cbcf2a /clang/lib/Sema/SemaLookup.cpp
parentb25445cb48a1641f9111b61b0e4ac61a313ccbb9 (diff)
downloadbcm5719-llvm-4b81fc87ad0d952bea640f3f39233a75cc73d8cb.tar.gz
bcm5719-llvm-4b81fc87ad0d952bea640f3f39233a75cc73d8cb.zip
No functionality change, just fix whitespace, a typo and remove an unnecessary
emacs mode marker. (Changes left behind from another patch that ended up not working out.) llvm-svn: 250666
Diffstat (limited to 'clang/lib/Sema/SemaLookup.cpp')
-rw-r--r--clang/lib/Sema/SemaLookup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaLookup.cpp b/clang/lib/Sema/SemaLookup.cpp
index 55ca678a5fa..6fbe0da8c90 100644
--- a/clang/lib/Sema/SemaLookup.cpp
+++ b/clang/lib/Sema/SemaLookup.cpp
@@ -1,4 +1,4 @@
-//===--------------------- SemaLookup.cpp - Name Lookup --------*- C++ -*-===//
+//===--------------------- SemaLookup.cpp - Name Lookup ------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -154,7 +154,7 @@ namespace {
// by its using directives, transitively) as if they appeared in
// the given effective context.
void addUsingDirectives(DeclContext *DC, DeclContext *EffectiveDC) {
- SmallVector<DeclContext*,4> queue;
+ SmallVector<DeclContext*, 4> queue;
while (true) {
for (auto UD : DC->using_directives()) {
DeclContext *NS = UD->getNominatedNamespace();
@@ -2189,7 +2189,7 @@ void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
case LookupResult::AmbiguousTagHiding: {
Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange;
- llvm::SmallPtrSet<NamedDecl*,8> TagDecls;
+ llvm::SmallPtrSet<NamedDecl*, 8> TagDecls;
for (auto *D : Result)
if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
OpenPOWER on IntegriCloud