fix adapter

This commit is contained in:
2026-04-07 14:35:20 +03:00
parent 83ae62ce19
commit 3afccda759

View File

@@ -71,29 +71,5 @@ namespace hr
auto r = m_fft.process(m_data); auto r = m_fft.process(m_data);
m_plugin.process(r, in, m_timestamp); m_plugin.process(r, in, m_timestamp);
} }
}; };
inline void sum0(int a, int b)
{
int z = a - b * a;
int c = a + z;
}
inline int sum1(int a, int b)
{
int z = a - b * a;
int c = a + z;
return c;
}
int r = sum1(4, 5);
} }