summaryrefslogtreecommitdiff
path: root/libs/qm-dsp
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-10-07 13:52:25 +0200
committerRobin Gareus <robin@gareus.org>2016-10-07 13:52:25 +0200
commita7d724d980cceef3dcf53569807318430437396b (patch)
treebf4785115e0fed2c2fe9246a6fd1312ccbffc556 /libs/qm-dsp
parent9f342ceef7879f18905cd6f930c65a89fcc50009 (diff)
avoid more C++11 - fixes OSX/PPC & MSVC builds
Diffstat (limited to 'libs/qm-dsp')
-rw-r--r--libs/qm-dsp/base/KaiserWindow.h2
1 files changed, 1 insertions, 1 deletions
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 {