0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 10:08:36 +02:00

ircd:Ⓜ️ Suppress subobject linkage warnings here for now.

This commit is contained in:
Jason Volk 2018-01-25 12:15:50 -08:00
parent 610d4ad9da
commit 623f4fec8c

View file

@ -20,6 +20,8 @@ namespace ircd::m
/// protocol uses a JSON authorization object to create the X-Matrix
/// authorization header on federation requests.
///
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsubobject-linkage"
struct ircd::m::request
:json::tuple
<
@ -61,6 +63,7 @@ struct ircd::m::request
using super_type::tuple;
request() = default;
};
#pragma GCC diagnostic pop
struct ircd::m::request::x_matrix
{