Files
Towards/external/entt/test/common/non_default_constructible.h
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

18 lines
300 B
C++

#ifndef ENTT_COMMON_NON_DEFAULT_CONSTRUCTIBLE_H
#define ENTT_COMMON_NON_DEFAULT_CONSTRUCTIBLE_H
namespace test {
struct non_default_constructible {
non_default_constructible() = delete;
non_default_constructible(int v)
: value{v} {}
int value;
};
} // namespace test
#endif