avoid C++11 - fixes OSX/PPC builds

This commit is contained in:
Robin Gareus 2017-04-02 15:23:24 +02:00
parent 77e8c0c4df
commit 0ed1a88af1
3 changed files with 20 additions and 2 deletions

View file

@ -81,7 +81,7 @@ public:
}
const double *getWindow() const {
return m_window.data();
return &m_window[0];
}
void cut(double *src) const {

View file

@ -37,7 +37,7 @@ public:
}
const double *getWindow() const {
return m_window.data();
return &m_window[0];
}
void cut(double *src) const {