mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
Removing const declaration of allocRecord to fix compile problem
This commit is contained in:
parent
7f2e670ff3
commit
39614a3ab3
2 changed files with 2 additions and 2 deletions
|
@ -636,7 +636,7 @@ SimulatedBlock::getBatSize(Uint16 blockNo){
|
|||
}
|
||||
|
||||
void*
|
||||
SimulatedBlock::allocRecord(const char * type, size_t s, size_t n) const
|
||||
SimulatedBlock::allocRecord(const char * type, size_t s, size_t n)
|
||||
{
|
||||
|
||||
void* p = NULL;
|
||||
|
|
|
@ -350,7 +350,7 @@ protected:
|
|||
* Allocates memory for the datastructures where ndb keeps the data
|
||||
*
|
||||
*/
|
||||
void* allocRecord(const char * type, size_t s, size_t n) const ;
|
||||
void* allocRecord(const char * type, size_t s, size_t n);
|
||||
|
||||
/**
|
||||
* Deallocate record
|
||||
|
|
Loading…
Add table
Reference in a new issue