docca icon indicating copy to clipboard operation
docca copied to clipboard

wrong reference targets with protected special members

Open vinniefalco opened this issue 7 years ago • 0 comments

For example:

class T
{
protected:
  T() = default;

public:
   T(T const&) = delete;
   T& operator=(T const&) = delete;
};

This will generate the wrong link targets

vinniefalco avatar Mar 27 '17 19:03 vinniefalco