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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
90acd66e
Commit
90acd66e
authored
Jun 12, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_list.h:
One more missed fix from Windows sql/sql_list.h: One more missed fix from Windows
parent
edc96d99
Changes
1
Show 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 @
90acd66e
...
...
@@ -82,6 +82,7 @@ class base_list :public Sql_alloc {
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 @@ class base_list :public Sql_alloc {
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