aboutsummaryrefslogtreecommitdiffstats
path: root/al/eax
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-09-22 13:13:09 -0700
committerChris Robinson <[email protected]>2023-09-22 13:13:09 -0700
commitc53ed17c59345526ba41b62bd886c2cbaaca423b (patch)
tree22c1d8f985201152f07817ec2f68994aba769cee /al/eax
parentbc5b58464ce52097efdb53c8019ba048e7ee3ba8 (diff)
Avoid casting an integer literal
Diffstat (limited to 'al/eax')
-rw-r--r--al/eax/call.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/eax/call.h b/al/eax/call.h
index f2ad529e..45ff328c 100644
--- a/al/eax/call.h
+++ b/al/eax/call.h
@@ -61,7 +61,7 @@ public:
template<typename TValue>
al::span<TValue> get_values() const
{
- return get_values<TValue>(~size_t{});
+ return get_values<TValue>(~0_uz);
}
template<typename TException, typename TValue>