13
0

Fix a missing std when using modern VAMP-SDK

This commit is contained in:
Robin Gareus 2020-05-24 23:21:16 +02:00
parent d3ffc4d90a
commit d7ca8c350a
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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();
}