Files
rtems/cpukit/score/cpu
Sebastian Huber f35c3be9f8 Remove register keyword from public header files
The following code

  void f(void)
  {
    register int i;
  }

gives a warning with GCC and -std=c++17

  test.cc: In function ‘void f()’:
  test.cc:3:15: warning: ISO C++1z does not allow ‘register’ storage class
  specifier [-Wregister]
    register int i;
		       ^

and clang with -std=c++14

  test.cc:3:3: warning: 'register' storage class specifier is deprecated
  and incompatible with C++1z [-Wdeprecated-register]
    register int i;
    ^~~~~~~~~
  1 warning generated.

Remove the use of the register keyword at least in the public header
files for C++ compatibility.

Close #3397.
2018-04-16 07:37:06 +02:00
..
2018-03-13 09:55:23 -05:00
2018-04-09 07:09:47 +02:00
2018-01-25 08:45:26 +01:00
2018-04-09 07:09:47 +02:00
2018-04-09 07:09:47 +02:00