0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-04 14:48:56 +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 /// protocol uses a JSON authorization object to create the X-Matrix
/// authorization header on federation requests. /// authorization header on federation requests.
/// ///
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wsubobject-linkage"
struct ircd::m::request struct ircd::m::request
:json::tuple :json::tuple
< <
@ -61,6 +63,7 @@ struct ircd::m::request
using super_type::tuple; using super_type::tuple;
request() = default; request() = default;
}; };
#pragma GCC diagnostic pop
struct ircd::m::request::x_matrix struct ircd::m::request::x_matrix
{ {