How are you using this class? Using VS2017 with VA 2212, I have the following test code:
class testDeleteConstructor
{
public:
testDeleteConstructor(const testDeleteConstructor &rhs) = delete;
void publicMember();
private:
void privateMember();
};
void testUsingDelete()
{
testDeleteConstructor testDel;
testDel.|
}
when typing the dot, where the caret is marked, only the single public method for the class comes up in the listbox. I also have the setting:
VA Options -> Enhanced Listboxes -> Source of C/C++ content: Default Intellisense