Browse Source

Fix some compiler warnings

tags/1.9.8
Filipe Coelho 6 years ago
parent
commit
eb1d1c05b7
2 changed files with 4 additions and 1 deletions
  1. +1
    -1
      source/backend/CarlaUtils.cpp
  2. +3
    -0
      source/utils/CarlaPipeUtils.cpp

+ 1
- 1
source/backend/CarlaUtils.cpp View File

@@ -581,7 +581,7 @@ public:
return fLastReadLine;
}

bool msgReceived(const char* const msg) noexcept
bool msgReceived(const char* const msg) noexcept override
{
if (fCallbackFunc != nullptr)
{


+ 3
- 0
source/utils/CarlaPipeUtils.cpp View File

@@ -1379,6 +1379,9 @@ bool CarlaPipeServer::startPipeServer(const char* const filename,
#endif

return false;

// maybe unused
(void)size;
}

void CarlaPipeServer::stopPipeServer(const uint32_t timeOutMilliseconds) noexcept


Loading…
Cancel
Save