bkramer added inline comments.

================
Comment at: lib/Lex/PPDirectives.cpp:804
     if (LangOpts.MSVCCompat && !isAngled) {
-      for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
         IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1];
----------------
While there you could turn this into a for-range loop 
```
for (IncludeStackInfo &ISEntry : llvm::reverse(IncludeMacroStack))
```


================
Comment at: lib/Lex/PPDirectives.cpp:868
 
-  for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
     IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
----------------
Looks like another candidate for for-range.


https://reviews.llvm.org/D25939



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to