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