Commit be94b437 authored by Max Kellermann's avatar Max Kellermann

util/OffsetPointer: add `noexcept`

parent eeec0ee8
...@@ -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) OffsetPointer(void *p, ptrdiff_t offset) noexcept
{ {
return (char *)p + offset; return (char *)p + offset;
} }
...@@ -44,7 +44,7 @@ OffsetPointer(void *p, ptrdiff_t offset) ...@@ -44,7 +44,7 @@ OffsetPointer(void *p, ptrdiff_t offset)
* 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) OffsetPointer(const void *p, ptrdiff_t offset) noexcept
{ {
return (const char *)p + offset; return (const char *)p + offset;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment