Skip to content
Snippets Groups Projects
Unverified Commit c420c5b4 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

build: fix build on recent gcc, DhParams must be destructible

On recent gcc, daemon fails (static assertion failed: result type
must be destructible) cause futures must access the destructor
since commit/71ed3c0c9a3458998bded8e2443c0a680c2eb8cd in gcc

Change-Id: I1e7d35da6aeaffffcb6aa9362d335625ea370052
parent 17f9bda8
Branches
No related tags found
No related merge requests found
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include "manager.h" #include "manager.h"
#include "certstore.h" #include "certstore.h"
#include "array_size.h" #include "array_size.h"
#include "diffie-hellman.h"
#include "scheduled_executor.h" #include "scheduled_executor.h"
#include <gnutls/gnutls.h> #include <gnutls/gnutls.h>
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "noncopyable.h" #include "noncopyable.h"
#include "generic_io.h" #include "generic_io.h"
#include "diffie-hellman.h"
#include <gnutls/gnutls.h> #include <gnutls/gnutls.h>
...@@ -46,8 +47,6 @@ struct PrivateKey; ...@@ -46,8 +47,6 @@ struct PrivateKey;
namespace jami { namespace jami {
namespace tls { namespace tls {
class DhParams;
enum class TlsSessionState { enum class TlsSessionState {
NONE, NONE,
SETUP, SETUP,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment