C1080: Constructor/destructor: Parenthesis missing

[ERROR]

Description

A redeclaration of a constructor/destructor is done without parenthesis.

Example
  struct A {

  
    ~A();

  
  };

  
  A::~A;   // error

  
  A::~A(); // ok

  
Tips

Add parenthesis to the redeclaration of the constructor/destructor.