2022-07-25 00:36:05 -06:00
|
|
|
#include <SFML/Window/GlResource.hpp>
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
static_assert(!std::is_constructible_v<sf::GlResource>);
|
2023-04-01 02:44:05 +02:00
|
|
|
static_assert(std::is_copy_constructible_v<sf::GlResource>);
|
2022-07-25 00:36:05 -06:00
|
|
|
static_assert(std::is_copy_assignable_v<sf::GlResource>);
|
2023-04-01 02:44:05 +02:00
|
|
|
static_assert(std::is_nothrow_move_constructible_v<sf::GlResource>);
|
2022-07-25 00:36:05 -06:00
|
|
|
static_assert(std::is_nothrow_move_assignable_v<sf::GlResource>);
|