]> granicus.if.org Git - clang/commit
[Sema] Fix incorrect enum token namespace
authorEtienne Bergeron <etienneb@google.com>
Wed, 1 Jun 2016 21:17:32 +0000 (21:17 +0000)
committerEtienne Bergeron <etienneb@google.com>
Wed, 1 Jun 2016 21:17:32 +0000 (21:17 +0000)
commit06caa0fe00ee42f68f342c97b8e83cc6a596e3f5
treefac924ab2c7426797fcc1decbde4640786bf7448
parentd6c6df822307d61791cd5973908a6966571190b9
[Sema] Fix incorrect enum token namespace

Summary:
This patch fix the scoping of enum literal. They were not resolving
to the right type.

It was not causing any problem as one is a copy of the other one.

The literal in the switch are resolving to Sema.h:5527
```
  enum AccessResult {
    AR_accessible,
    AR_inaccessible,
    AR_dependent,
    AR_delayed
  };
```

Instead of SemaAccess.cpp:27
```
/// A copy of Sema's enum without AR_delayed.
enum AccessResult {
  AR_accessible,
  AR_inaccessible,
  AR_dependent
};
```

This issue was found by a new clang-tidy check (still on-going).

Reviewers: rsmith, aaron.ballman

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D20773

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271431 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Sema/SemaAccess.cpp