]> granicus.if.org Git - clang/commitdiff
[C++11] Drop legacy conditionals for TokenKind's underlying type
authorAlp Toker <alp@nuanti.com>
Sun, 2 Mar 2014 02:26:52 +0000 (02:26 +0000)
committerAlp Toker <alp@nuanti.com>
Sun, 2 Mar 2014 02:26:52 +0000 (02:26 +0000)
This relies on forward declaration of enums.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202605 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/Diagnostic.h
include/clang/Basic/TokenKinds.h

index d83c4c0b9b4084a649cf9a9426218329152e5110..5e3fd015a52762a84f95e1ab4f74efcdc8363881 100644 (file)
@@ -18,9 +18,6 @@
 #include "clang/Basic/DiagnosticIDs.h"
 #include "clang/Basic/DiagnosticOptions.h"
 #include "clang/Basic/SourceLocation.h"
-#if !LLVM_HAS_STRONG_ENUMS
-#include "clang/Basic/TokenKinds.h"
-#endif
 #include "llvm/ADT/ArrayRef.h"
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/IntrusiveRefCntPtr.h"
@@ -38,11 +35,9 @@ namespace clang {
   class Preprocessor;
   class DiagnosticErrorTrap;
   class StoredDiagnostic;
-#if LLVM_HAS_STRONG_ENUMS
   namespace tok {
   enum TokenKind : unsigned short;
   }
-#endif
 
 /// \brief Annotates a diagnostic with some code that should be
 /// inserted, removed, or replaced to fix the problem.
index bca267fe505295383a39824a6b49139e6ece191d..794625ca91e3938acae5dac15b206d32521c5764 100644 (file)
@@ -22,7 +22,7 @@ namespace clang {
 namespace tok {
 
 /// \brief Provides a simple uniform namespace for tokens from all C languages.
-enum TokenKind LLVM_ENUM_INT_TYPE(unsigned short) {
+enum TokenKind : unsigned short {
 #define TOK(X) X,
 #include "clang/Basic/TokenKinds.def"
   NUM_TOKENS