This revision was automatically updated to reflect the committed changes.
Closed by commit rL281995: [cleanup] Remove excessive padding from 
TextTokenRetokenizer::Position (authored by alexshap).

Changed prior to commit:
  https://reviews.llvm.org/D24751?vs=71897&id=71963#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D24751

Files:
  cfe/trunk/lib/AST/CommentParser.cpp

Index: cfe/trunk/lib/AST/CommentParser.cpp
===================================================================
--- cfe/trunk/lib/AST/CommentParser.cpp
+++ cfe/trunk/lib/AST/CommentParser.cpp
@@ -40,11 +40,11 @@
 
   /// A position in \c Toks.
   struct Position {
-    unsigned CurToken;
     const char *BufferStart;
     const char *BufferEnd;
     const char *BufferPtr;
     SourceLocation BufferStartLoc;
+    unsigned CurToken;
   };
 
   /// Current position in Toks.


Index: cfe/trunk/lib/AST/CommentParser.cpp
===================================================================
--- cfe/trunk/lib/AST/CommentParser.cpp
+++ cfe/trunk/lib/AST/CommentParser.cpp
@@ -40,11 +40,11 @@
 
   /// A position in \c Toks.
   struct Position {
-    unsigned CurToken;
     const char *BufferStart;
     const char *BufferEnd;
     const char *BufferPtr;
     SourceLocation BufferStartLoc;
+    unsigned CurToken;
   };
 
   /// Current position in Toks.
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to