mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
avoid C++11 - fixes OSX/PPC builds
This commit is contained in:
parent
77e8c0c4df
commit
0ed1a88af1
3 changed files with 20 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ public:
|
|||
}
|
||||
|
||||
const double *getWindow() const {
|
||||
return m_window.data();
|
||||
return &m_window[0];
|
||||
}
|
||||
|
||||
void cut(double *src) const {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ public:
|
|||
}
|
||||
|
||||
const double *getWindow() const {
|
||||
return m_window.data();
|
||||
return &m_window[0];
|
||||
}
|
||||
|
||||
void cut(double *src) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue