From 745dec673d8cc482d1d9cd78ac980e92641870c1 Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Fri, 1 Oct 2021 21:50:17 +0200 Subject: [PATCH] Add missing cstddef include --- include/lmms_basics.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/lmms_basics.h b/include/lmms_basics.h index e4ee16b30..a4c2e5509 100644 --- a/include/lmms_basics.h +++ b/include/lmms_basics.h @@ -26,6 +26,7 @@ #ifndef TYPES_H #define TYPES_H +#include #include #include "lmmsconfig.h" @@ -130,7 +131,7 @@ constexpr char LADSPA_PATH_SEPERATOR = using sampleFrame = std::array; using surroundSampleFrame = std::array; -constexpr size_t LMMS_ALIGN_SIZE = 16; +constexpr std::size_t LMMS_ALIGN_SIZE = 16; #define STRINGIFY(s) STR(s)