1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-26 03:54:30 -04:00

activated compiler warnings

This commit is contained in:
f4exb
2017-05-25 20:13:34 +02:00
parent d6f62a69dd
commit 3a3d8e3dcb
157 changed files with 655 additions and 772 deletions
+3 -3
View File
@@ -11,12 +11,12 @@ NullSink::~NullSink()
{
}
bool NullSink::init(const Message& message)
bool NullSink::init(const Message& message __attribute__((unused)))
{
return false;
}
void NullSink::feed(SampleVector::const_iterator begin, SampleVector::const_iterator end, bool positiveOnly)
void NullSink::feed(SampleVector::const_iterator begin __attribute__((unused)), SampleVector::const_iterator end __attribute__((unused)), bool positiveOnly __attribute__((unused)))
{
}
@@ -28,7 +28,7 @@ void NullSink::stop()
{
}
bool NullSink::handleMessage(const Message& message)
bool NullSink::handleMessage(const Message& message __attribute__((unused)))
{
return false;
}