From f41bd2c7c162c10e1627deef3bdddca17d27bb61 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 14 Jan 2019 23:04:05 +0100 Subject: [PATCH] source-mirror: Remove unnecessary register keyword This keyword also no longer exists in C++17 --- source/source-mirror.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/source-mirror.cpp b/source/source-mirror.cpp index a5542c3..d21cde1 100644 --- a/source/source-mirror.cpp +++ b/source/source-mirror.cpp @@ -465,9 +465,9 @@ void Source::Mirror::deactivate() static inline void mix_audio(float* p_out, float* p_in, size_t pos, size_t count) { - register float* out = p_out; - register float* in = p_in + pos; - register float* end = in + count; + float* out = p_out; + float* in = p_in + pos; + float* end = in + count; while (in < end) *(out++) += *(in++);