Auto-detect non-assignable classes

Classes with references or const data are now marked as 'noassign'.
This renders many explicit `private: operator=` declarations redundant.
This commit is contained in:
Seth R Johnson 2019-02-14 07:18:33 -05:00
commit 03dd2ec39d
7 changed files with 11 additions and 14 deletions

View file

@ -35,7 +35,5 @@
const char memberconstchar;
virtual ~DirectorTest() {}
private:
DirectorTest& operator=(const DirectorTest &);
};
%}