summaryrefslogtreecommitdiff
path: root/deimos/core/base.h
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-05 00:00:33 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-05 00:00:33 +0200
commitf46b019cb0a2f451234fdb4f20620b7e443da136 (patch)
tree29a3b0f1441cef9932e0770b155294be55d11e9e /deimos/core/base.h
parent8970c40ce9a9a4e5f582b48f69b77bd90d8e678e (diff)
Add gsl::owner
Diffstat (limited to 'deimos/core/base.h')
-rw-r--r--deimos/core/base.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/deimos/core/base.h b/deimos/core/base.h
index 4bcb7c7..64d1ed9 100644
--- a/deimos/core/base.h
+++ b/deimos/core/base.h
@@ -101,7 +101,6 @@ public:
template<typename T>
inline Span<const std::byte> AsBytes(Span<T> span)
{
- // NOLINTNEXTLINE
return { reinterpret_cast<const std::byte*>(span.data()), span.size() * (int64_t)sizeof(T) };
}