inner class copy ctor, assignment ctor
Brought to you by:
blep
Visual Studio .Net reports 4511 and 4512 warnings about
copy constructors and assignment constructors. I
believe you don't want these ctor defaults from the
compiler and do want to prevent their definition.
Example: ProtectorChain::ProtectFunctor
If that's right, you should add these lines
---
private:
// prevent copy or assignment operator default
definition by compiler
ProtectFunctor( const ProtectFunctor &other );
ProtectFunctor &operator=( const ProtectFunctor
&other );
--
These entries will fix the warning, at least.
Of course, if you DO want the copy and assignment
ctors, you should add them.
Other Classes that have this warning include:
TestSuiteBuilderContextBase