Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ec5c5691
Commit
ec5c5691
authored
Aug 10, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing const declaration of allocRecord to fix compile problem
parent
11d177b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ndb/src/kernel/vm/SimulatedBlock.cpp
ndb/src/kernel/vm/SimulatedBlock.cpp
+1
-1
ndb/src/kernel/vm/SimulatedBlock.hpp
ndb/src/kernel/vm/SimulatedBlock.hpp
+1
-1
No files found.
ndb/src/kernel/vm/SimulatedBlock.cpp
View file @
ec5c5691
...
@@ -636,7 +636,7 @@ SimulatedBlock::getBatSize(Uint16 blockNo){
...
@@ -636,7 +636,7 @@ SimulatedBlock::getBatSize(Uint16 blockNo){
}
}
void
*
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
;
void
*
p
=
NULL
;
...
...
ndb/src/kernel/vm/SimulatedBlock.hpp
View file @
ec5c5691
...
@@ -350,7 +350,7 @@ protected:
...
@@ -350,7 +350,7 @@ protected:
* Allocates memory for the datastructures where ndb keeps the data
* 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
* Deallocate record
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment