From a7d724d980cceef3dcf53569807318430437396b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 7 Oct 2016 13:52:25 +0200 Subject: avoid more C++11 - fixes OSX/PPC & MSVC builds --- libs/qm-dsp/base/KaiserWindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs') diff --git a/libs/qm-dsp/base/KaiserWindow.h b/libs/qm-dsp/base/KaiserWindow.h index f16a4b6c16..0253d6d4c4 100644 --- a/libs/qm-dsp/base/KaiserWindow.h +++ b/libs/qm-dsp/base/KaiserWindow.h @@ -81,7 +81,7 @@ public: } const double *getWindow() const { - return m_window.data(); + return &m_window[0]; } void cut(double *src) const { -- cgit v1.2.3