0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd::vector_view: Suppress deprecated-copy warning here for now.

This commit is contained in:
Jason Volk 2022-05-04 12:21:27 -07:00
parent ea5241615f
commit 63a5a6dfdd

View file

@ -136,7 +136,11 @@ struct ircd::vector_view
{}
vector_view() noexcept = default;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-copy"
vector_view &operator=(const vector_view &) noexcept = default;
#pragma GCC diagnostic pop
};
template<class T>