mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -1514,7 +1514,7 @@ cleanup:
|
|||
ulong read_to_buffer(IO_CACHE *fromfile, BUFFPEK *buffpek,
|
||||
uint rec_length)
|
||||
{
|
||||
register ulong count;
|
||||
ulong count;
|
||||
ulong length= 0;
|
||||
|
||||
if ((count= (ulong) MY_MIN((ha_rows) buffpek->max_keys,buffpek->count)))
|
||||
|
|
Loading…
Reference in a new issue