Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
643bf953
Commit
643bf953
authored
Sep 28, 2020
by
Max Kellermann
Committed by
Max Kellermann
Oct 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/OffsetPointer: use std::ptrdiff_t
parent
36a187da
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
OffsetPointer.hxx
src/util/OffsetPointer.hxx
+2
-2
No files found.
src/util/OffsetPointer.hxx
View file @
643bf953
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
* Offset the given pointer by the specified number of bytes.
* Offset the given pointer by the specified number of bytes.
*/
*/
constexpr
void
*
constexpr
void
*
OffsetPointer
(
void
*
p
,
ptrdiff_t
offset
)
noexcept
OffsetPointer
(
void
*
p
,
std
::
ptrdiff_t
offset
)
noexcept
{
{
return
(
char
*
)
p
+
offset
;
return
(
char
*
)
p
+
offset
;
}
}
...
@@ -44,7 +44,7 @@ OffsetPointer(void *p, ptrdiff_t offset) noexcept
...
@@ -44,7 +44,7 @@ OffsetPointer(void *p, ptrdiff_t offset) noexcept
* Offset the given pointer by the specified number of bytes.
* Offset the given pointer by the specified number of bytes.
*/
*/
constexpr
const
void
*
constexpr
const
void
*
OffsetPointer
(
const
void
*
p
,
ptrdiff_t
offset
)
noexcept
OffsetPointer
(
const
void
*
p
,
std
::
ptrdiff_t
offset
)
noexcept
{
{
return
(
const
char
*
)
p
+
offset
;
return
(
const
char
*
)
p
+
offset
;
}
}
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