Changeset 5e92a9 in git


Ignore:
Timestamp:
Jun 28, 2019, 7:16:27 PM (5 years ago)
Author:
Max Horn <max@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
0c8bd5e3c25fc9eee3515f8acf944ee5ebe1696b
Parents:
299cf9dabe65794572ba7a95c0fa1430dbb7331d
Message:
Fix compiler warning by removing use of `register`

For modern C compilers, this keyword has no effect at all (for GCC
at least since GCC 3, released almost two decades ago).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/ffops.h

    r299cf9 r5e92a9  
    152152        return ff_biginv( a );
    153153    else {
    154         register int b;
     154        int b;
    155155        if ( (b = (int)(ff_invtab[a])) )
    156156            return b;
Note: See TracChangeset for help on using the changeset viewer.