Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template <class T>
- struct data_structure
- {
- static_assert(std::is_default_constructible<T>::value,
- "Data Structure requires default-constructible elements");
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement