mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-23 21:57:16 +01:00
Fix a missing std when using modern VAMP-SDK
This commit is contained in:
parent
d3ffc4d90a
commit
d7ca8c350a
1 changed files with 3 additions and 3 deletions
|
|
@ -317,9 +317,9 @@ TonalChangeDetect::process(const float *const *inputBuffers,
|
|||
Vamp::RealTime timestamp)
|
||||
{
|
||||
if (!m_chromagram) {
|
||||
cerr << "ERROR: TonalChangeDetect::process: "
|
||||
<< "Chromagram has not been initialised"
|
||||
<< endl;
|
||||
std::cerr << "ERROR: TonalChangeDetect::process: "
|
||||
<< "Chromagram has not been initialised"
|
||||
<< endl;
|
||||
return FeatureSet();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue