eric_niebler added inline comments.

================
Comment at: lib/Lex/PPDirectives.cpp:220
@@ +219,3 @@
+    // In the ASCII range?
+    if (Ch < 0 || Ch > 0xff)
+      return false; // Can't be a standard header
----------------
rsmith wrote:
> Comment doesn't match code: the ASCII range ends at 0x7F.
This should be `0x7F`. I'll fix it.


http://reviews.llvm.org/D19843



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

Reply via email to