summaryrefslogtreecommitdiffstats
path: root/include/ingen/AtomForge.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-12 09:43:30 -0400
committerDavid Robillard <d@drobilla.net>2023-05-12 09:43:30 -0400
commited09a166b6b3c48f1f1d85f9bfd77ef00a463088 (patch)
treeff1c10ae67d5637c642384a883fe990fe478a22e /include/ingen/AtomForge.hpp
parent06ed19d4ef9250f772ce6192640ab25ea0d5c4f4 (diff)
downloadingen-ed09a166b6b3c48f1f1d85f9bfd77ef00a463088.tar.gz
ingen-ed09a166b6b3c48f1f1d85f9bfd77ef00a463088.tar.bz2
ingen-ed09a166b6b3c48f1f1d85f9bfd77ef00a463088.zip
Fix implicit widening conversions
Diffstat (limited to 'include/ingen/AtomForge.hpp')
-rw-r--r--include/ingen/AtomForge.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ingen/AtomForge.hpp b/include/ingen/AtomForge.hpp
index 81f36b5b..cf5a759d 100644
--- a/include/ingen/AtomForge.hpp
+++ b/include/ingen/AtomForge.hpp
@@ -76,7 +76,7 @@ private:
/// Append some data and return a reference to its start
intptr_t append(const void* data, uint32_t len) {
// Record offset of the start of this write (+1 to avoid null)
- const intptr_t ref = _size + 1;
+ const auto ref = static_cast<intptr_t>(_size + 1U);
// Update size and reallocate if necessary
if (lv2_atom_pad_size(_size + len) > _capacity) {