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