Advertisement
Guest User

Untitled

a guest
Feb 16th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. diff -r 083bc63fcc2d Lexer.hpp
  2. --- a/Lexer.hpp Sat Feb 16 16:06:23 2013 +0400
  3. +++ b/Lexer.hpp Sat Feb 16 16:28:49 2013 +0400
  4. @@ -99,7 +99,10 @@
  5.  
  6. switch (ch)
  7. {
  8. - case ' ': case '\t': case '\f': case '\v':
  9. + case '\t':
  10. + throw CompilerError(*this, ErrorCode::TabsSucks);
  11. +
  12. + case ' ': case '\f': case '\v':
  13. return lex_impl();
  14.  
  15. case '\n': case '\r':
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement