#pragma once #include //Do this in global namespace after everything is defined. #define MARK_NON_COPY_CTORABLE(fully_qualified_type_name) \ namespace meta \ { \ template<> struct is_copy_constructible : false_type{}; \ }