To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70664


User np changed the following:

                What    |Old value                 |New value
================================================================================
                  Status|NEW                       |STARTED
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Fri Oct 27 02:55:30 -0700 
2006 -------
> String sCe( pNext, (bMember ? csv::str::size(pPastNext-pNext) :
csv::str::maxsize) );

csv::str::size is a typedef of ::size_t, csv::str::maxsize is an enum value. A
solution is to just cast csv::str::maxsize as well:

String sCe( pNext, (bMember ? csv::str::size(pPastNext-pNext) :
csv::str::size(csv::str::maxsize)) );

As soon as all compilers support this, a better solution would be, to change the
declaration of "maxsize" this way:

struct str
{ typedef ::size_t size;

- enum { maxsize = size(-1) };
+ const size maxsize = size(-1);

};

You can do whatever seems to be the appropriate thing to make the AQUA port 
run. 
I will bring a fix in the master.


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to