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
81148397
Commit
81148397
authored
Jun 12, 2002
by
venu@myvenu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_list.h:
One more missed fix from Windows
parent
3e7b4b27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
sql/sql_list.h
sql/sql_list.h
+3
-1
No files found.
sql/sql_list.h
View file @
81148397
...
...
@@ -82,6 +82,7 @@ public:
first
=
tmp
.
first
;
last
=
tmp
.
last
;
}
inline
base_list
(
bool
error
)
{
}
inline
bool
push_back
(
void
*
info
)
{
if
(((
*
last
)
=
new
list_node
(
info
,
&
end_of_list
)))
...
...
@@ -130,6 +131,7 @@ public:
inline
list_node
*
last_ref
()
{
return
&
end_of_list
;
}
friend
class
base_list_iterator
;
friend
class
error_list
;
friend
class
error_list_iterator
;
protected:
void
after
(
void
*
info
,
list_node
*
node
)
...
...
@@ -405,7 +407,7 @@ class error_list: public Error_alloc, public base_list
{
public:
inline
error_list
()
:
base_list
()
{
};
inline
error_list
(
const
error_list
&
tmp
)
:
Error_alloc
(
)
inline
error_list
(
const
error_list
&
tmp
)
:
base_list
(
tmp
)
{
elements
=
tmp
.
elements
;
first
=
tmp
.
first
;
...
...
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