Initial commit - restart from existing code
This commit is contained in:
17
lib/All/entt/test/common/non_default_constructible.h
Normal file
17
lib/All/entt/test/common/non_default_constructible.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user