CodeGen: latests verions (1601 and 1603) generate comments from service methods incorrectly on C++Builder/Delphi

Hello.

I have some methods were we have put some comments on ServiceBuilder, using “Document this Operation”. Some of those comments are multiline comments.

Before, generating the _Intf files created, for instance:

		// Description:
		// En esta función se obtiene la información de los almacenes que están habilitados
		// utilizando un Query a la base de datos.

The newest versions, 1601 and 1603, generate this code:

		/// <summary>
		/// En esta función se obtiene la información de los almacenes que están habilitados
utilizando un Query a la base de datos.
		/// </summary>

Which breaks the compilation…

This also appear to happen with Delphi codegen. C# doesn’t appear to generate those comments, so it is not affected. I haven’t checked other languages.

Forgot to mention: this happens from ServiceBuilder and from within the IDE.

And here is an example RODL that will show the problems. I also added comments within the documentation to see what would happen:

TestComments.rodl (831 Bytes)

Logged as bugs://D19509.

bugs://D19509 was closed as fixed.

Hi,

Thx for report.

should be fixed:

Thanks Evgeny!