Skip to content
Snippets Groups Projects
Commit c598cf48 authored by Adrien Béraud's avatar Adrien Béraud Committed by Philippe Gorley
Browse files

fix various warnings


Change-Id: I2794c1d374654870985a655a42ac647ff66c97a1
Reviewed-by: default avatarPhilippe Gorley <philippe.gorley@savoirfairelinux.com>
parent 007dc97c
Branches
Tags
No related merge requests found
...@@ -61,7 +61,7 @@ namespace ring { ...@@ -61,7 +61,7 @@ namespace ring {
class Call; class Call;
class SystemCodecContainer; class SystemCodecContainer;
class IceTransportOptions; struct IceTransportOptions;
class VoipLinkException : public std::runtime_error class VoipLinkException : public std::runtime_error
{ {
......
...@@ -53,7 +53,7 @@ MessageEngine::sendMessage(const std::string& to, const std::map<std::string, st ...@@ -53,7 +53,7 @@ MessageEngine::sendMessage(const std::string& to, const std::map<std::string, st
m.first->second.payloads = payloads; m.first->second.payloads = payloads;
} }
save(); save();
runOnMainThread([this,token]() { runOnMainThread([this]() {
retrySend(); retrySend();
}); });
return token; return token;
......
...@@ -37,11 +37,11 @@ ...@@ -37,11 +37,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
class AVCodecContext; struct AVCodecContext;
class AVStream; struct AVStream;
class AVFormatContext; struct AVFormatContext;
class AVDictionary; struct AVDictionary;
class AVCodec; struct AVCodec;
namespace ring { namespace ring {
......
...@@ -36,11 +36,11 @@ ...@@ -36,11 +36,11 @@
#include <mutex> #include <mutex>
#include <ciso646> // fix windows compiler bug #include <ciso646> // fix windows compiler bug
class AVPacket; struct AVPacket;
class AVDictionary; struct AVDictionary;
#ifndef AVFORMAT_AVIO_H #ifndef AVFORMAT_AVIO_H
class AVIOContext; struct AVIOContext;
#endif #endif
namespace ring { namespace ring {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment