<div dir="ltr"><div lang="EN-US"><div class="m_5188906205036947868WordSection1"><p class="MsoNormal"><a name="m_5188906205036947868__olk_signature">Hello,</a></p><p class="MsoNormal"><br></p><p class="MsoNormal"><span>I’ve been trying to do some code generation using clang (not libclang), and want to find out if a class can be copy constructed.</span></p><p class="MsoNormal"><br></p><p class="MsoNormal"><span>I’ve tried testing if the copy constructor is deleted, but this does not work well with templates. For example, I have a class that contains a std::vector<std::unique_ptr>, whose copy constructor will apparently fail to instantiate, but doesn’t cause the copy constructors of std::vector or my class to be marked as deleted. Also, isInvalidDecl() returns false, which (I think) means that the compiler didn’t even attempt to instantiate the constructor as it has never been used.</span></p><p class="MsoNormal"><br></p><p class="MsoNormal"><span>I believe that my best bet is to try to manually check if the constructor can instantiate. I’ve looked at clang::Sema, but was overwhelmed by the large amount of functions. I also noticed that a lot of these functions seem to have side effects, which is undesired since I do not want this check to cause other parts of the code to not compile.</span></p><p class="MsoNormal"><br></p><p class="MsoNormal"><span>Am I on the right path? If so, which functions in clang::Sema should I use, and how? If not, is there a better way?</span></p><p class="MsoNormal"><br></p><p class="MsoNormal"><span>Thank you very much.</span></p><p class="MsoNormal"><span><u></u> <u></u></span></p><p class="MsoNormal"><span><u></u> <u></u></span></p></div></div></div>