"E2188 Expression syntax error" when passing default-constructed object to function

1k Views Asked by At
class MBool  
{
   protected:
      bool  mData;  
   public:
      MBool() : mData(false)          {}
      MBool(bool  Data)               { mData = Data; }
};

void myFunc ( const MBool& rBool )
{
}

bool test()
{
   myFunc( MBool() );
   myFunc( ( MBool() ) );  // <-- Error E2188 Expression syntax
   myFunc( MBool( false ) );
   myFunc( ( MBool( false ) ) ); 
}

Can someone please help explain the above error? It occurs using Embarcadero's XE7. The same code compiles fine using Visual Studio. The problem on XE7, as demonstrated, only occurs in the second line of the test method, all other cases compile fine.

EDIT Sorry, I pasted the wrong constructor in my example, it's fixed now. When surrounded by parentheses, the constructor with the boolean parameter compiles, but the parameterless constructor won't compile.

2

There are 2 best solutions below

1
On BEST ANSWER

This is a bug in bcc32.exe . The code works correctly in bcc64.

Here is a MCVE:

void f(int) {}

int main()
{
    f((int()));    // E2188 Expression syntax
}

As a workaround, take out the extra pair of parentheses.

2
On

I think the error you are getting is actually coming from:

myFunc( MBool( false ) );

And not from:

myFunc( ( MBool() ) );

In myFunc( MBool( false ) ); you are passing false to the constructor of MBool but Mbool only has a constructor taking 0 parameters. If look at your your code in this live example you will see that the only errors you get is the issue with calling a non existent constructor.

If you look at this E2188 help page error from embarcadero that bit it has on the error:

If the error occurred in another statement, the syntax error is probably in the surrounding code.