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
1a557525
Commit
1a557525
authored
Aug 05, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unused and illegal print method
parent
84de86c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
ndb/src/kernel/vm/ArrayPool.hpp
ndb/src/kernel/vm/ArrayPool.hpp
+0
-20
No files found.
ndb/src/kernel/vm/ArrayPool.hpp
View file @
1a557525
...
...
@@ -148,26 +148,6 @@ public:
void
releaseList
(
Uint32
n
,
Uint32
first
,
Uint32
last
);
//private:
/**
* Print
* (Run operator NdbOut<< on every element)
*/
void
print
(
NdbOut
&
out
){
#ifdef VM_TRACE
out
<<
"FirstFree = "
<<
firstFree
<<
endl
;
for
(
Uint32
i
=
0
;
i
<
size
;
i
++
){
#ifdef ARRAY_GUARD
if
(
BitmaskImpl
::
get
(
bitmaskSz
,
theAllocatedBitmask
,
i
))
out
<<
"A "
;
else
out
<<
"F "
;
#endif
out
<<
i
<<
": "
<<
theArray
[
i
]
<<
" "
;
}
out
<<
endl
;
#endif
}
#ifdef DEBUG
Uint32
getNoOfFree2
()
const
{
Uint32
c2
=
size
;
...
...
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