C1064: Constructor must not have return type

[ERROR]

Description

The specified constructor returned a value, or the class name is used for a member.

Example
  struct C {

  
    int C();  // error

  
    C();      // ok

  
  };

  
Tips

Do not declare a return type for constructors.