Also note that changes like:

  xs_integer pos = 1;

to:

  xs_integer pos( 1 );

are not simply stylistic: now that the constructors are explicit, the original 
line generates a compile-time error.  It would alternatively need to be changed 
to:

  xs_integer pos = xs_integer( 1 );

that serves no purpose other than being verbose.
-- 
https://code.launchpad.net/~zorba-coders/zorba/bug-966355/+merge/100316
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to     : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp

Reply via email to