Remove a "register" keyword from C++ code
The register keyword has no effect in C++, and it has been deprecated in newer versions of the standard.
This commit is contained in:
parent
a536664e80
commit
4513de3127
@ -1514,7 +1514,7 @@ cleanup:
|
|||||||
ulong read_to_buffer(IO_CACHE *fromfile, BUFFPEK *buffpek,
|
ulong read_to_buffer(IO_CACHE *fromfile, BUFFPEK *buffpek,
|
||||||
uint rec_length)
|
uint rec_length)
|
||||||
{
|
{
|
||||||
register ulong count;
|
ulong count;
|
||||||
ulong length= 0;
|
ulong length= 0;
|
||||||
|
|
||||||
if ((count= (ulong) MY_MIN((ha_rows) buffpek->max_keys,buffpek->count)))
|
if ((count= (ulong) MY_MIN((ha_rows) buffpek->max_keys,buffpek->count)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user