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
88abca55
Commit
88abca55
authored
Aug 06, 2019
by
Eugene Kosov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build (-Werror + -Wignored-qualifiers)
parent
a5a7ab19
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
13 deletions
+1
-13
libmariadb
libmariadb
+1
-1
storage/innobase/include/span.h
storage/innobase/include/span.h
+0
-12
No files found.
libmariadb
@
5fa9c461
Subproject commit
ed3a91c139175746c5d6903d67ca902d91228f65
Subproject commit
5fa9c4615e71b696b84b4c77aefa197466526a13
storage/innobase/include/span.h
View file @
88abca55
...
...
@@ -127,8 +127,6 @@ template <class ElementType> class span {
iterator
begin
()
const
{
return
data_
;
}
iterator
end
()
const
{
return
data_
+
size_
;
}
const_iterator
cbegin
()
const
{
return
data_
;
}
const_iterator
cend
()
const
{
return
data_
+
size_
;
}
reverse_iterator
rbegin
()
const
{
return
std
::
reverse_iterator
<
iterator
>
(
std
::
advance
(
end
(),
-
1
));
...
...
@@ -138,16 +136,6 @@ template <class ElementType> class span {
return
std
::
reverse_iterator
<
iterator
>
(
std
::
advance
(
begin
(),
-
1
));
}
const_reverse_iterator
crbegin
()
const
{
return
std
::
reverse_iterator
<
const_iterator
>
(
std
::
advance
(
end
(),
-
1
));
}
const_reverse_iterator
crend
()
const
{
return
std
::
reverse_iterator
<
const_iterator
>
(
std
::
advance
(
begin
(),
-
1
));
}
private:
pointer
data_
;
...
...
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