C1819: Constructor call with wrong number of arguments

[ERROR]

Description

The number of arguments for the constructor call at a class object initialization was wrong.

Example
  struct A {

  
    A();

  
  };

  
  void main() {

  
    A a(3);   // error

  
  }

  
Tips

Specify the correct number of arguments for calling the constructor. Try to disable the option -Cn=Ctr, so the compiler generates a copy constructor, which may be required in your code.