From bd1ee2983b53b2f58b5fb4c7b730f57bc0d10b28 Mon Sep 17 00:00:00 2001 From: Lukas W Date: Sun, 25 Aug 2019 23:49:22 +0200 Subject: [PATCH] Silence int conversion warning --- src/core/NotePlayHandle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/NotePlayHandle.cpp b/src/core/NotePlayHandle.cpp index c71020034..b2a80a625 100644 --- a/src/core/NotePlayHandle.cpp +++ b/src/core/NotePlayHandle.cpp @@ -542,5 +542,5 @@ void NotePlayHandle::resize( const bpm_t _new_tempo ) } } -const int INITIAL_NPH_CACHE = 256; +const size_t INITIAL_NPH_CACHE = 256; MemoryPool NotePlayHandlePool{INITIAL_NPH_CACHE};