Advertisement
dominus

Untitled

Dec 27th, 2019
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. uclex.cc:1384:2: error: ISO C++17 does not allow 'register' storage class
  2. specifier [-Wregister]
  3. register yy_state_type yy_current_state;
  4. ^~~~~~~~~
  5. uclex.cc:1385:2: error: ISO C++17 does not allow 'register' storage class
  6. specifier [-Wregister]
  7. register char *yy_cp, *yy_bp;
  8. ^~~~~~~~~
  9. uclex.cc:1385:2: error: ISO C++17 does not allow 'register' storage class
  10. specifier [-Wregister]
  11. register char *yy_cp, *yy_bp;
  12. ^~~~~~~~~
  13. uclex.cc:1386:2: error: ISO C++17 does not allow 'register' storage class
  14. specifier [-Wregister]
  15. register int yy_act;
  16. ^~~~~~~~~
  17. uclex.cc:1435:4: error: ISO C++17 does not allow 'register' storage class
  18. specifier [-Wregister]
  19. register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  20. ^~~~~~~~~
  21. uclex.cc:2502:6: error: ISO C++17 does not allow 'register' storage class
  22. specifier [-Wregister]
  23. register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  24. ^~~~~~~~~
  25. uclex.cc:2503:2: error: ISO C++17 does not allow 'register' storage class
  26. specifier [-Wregister]
  27. register char *source = (yytext_ptr);
  28. ^~~~~~~~~
  29. uclex.cc:2504:2: error: ISO C++17 does not allow 'register' storage class
  30. specifier [-Wregister]
  31. register int number_to_move, i;
  32. ^~~~~~~~~
  33. uclex.cc:2504:2: error: ISO C++17 does not allow 'register' storage class
  34. specifier [-Wregister]
  35. register int number_to_move, i;
  36. ^~~~~~~~~
  37. uclex.cc:2636:2: error: ISO C++17 does not allow 'register' storage class
  38. specifier [-Wregister]
  39. register yy_state_type yy_current_state;
  40. ^~~~~~~~~
  41. uclex.cc:2637:2: error: ISO C++17 does not allow 'register' storage class
  42. specifier [-Wregister]
  43. register char *yy_cp;
  44. ^~~~~~~~~
  45. uclex.cc:2643:3: error: ISO C++17 does not allow 'register' storage class
  46. specifier [-Wregister]
  47. register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_...
  48. ^~~~~~~~~
  49. uclex.cc:2668:2: error: ISO C++17 does not allow 'register' storage class
  50. specifier [-Wregister]
  51. register int yy_is_jam;
  52. ^~~~~~~~~
  53. uclex.cc:2669:6: error: ISO C++17 does not allow 'register' storage class
  54. specifier [-Wregister]
  55. register char *yy_cp = (yy_c_buf_p);
  56. ^~~~~~~~~
  57. uclex.cc:2671:2: error: ISO C++17 does not allow 'register' storage class
  58. specifier [-Wregister]
  59. register YY_CHAR yy_c = 1;
  60. ^~~~~~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement