To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68110
Issue #|68110
Summary|m180: Build breaks in tools/bootstrp/sstring.cxx on x8
|6-64
Component|utilities
Version|680m179
Platform|All
URL|
OS/Version|All
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P3
Subcomponent|code
Assigned to|hro
Reported by|kendy
------- Additional comments from [EMAIL PROTECTED] Thu Aug 3 04:16:17 -0700
2006 -------
The fix:
--- tools/bootstrp/sstring.cxx 2 Aug 2006 12:10:04 -0000 1.6
+++ tools/bootstrp/sstring.cxx 3 Aug 2006 11:09:57 -0000
@@ -173,7 +173,7 @@ void SByteStringList::CleanUp()
SByteStringList& SByteStringList::operator<< ( SvStream& rStream )
{
- ULONG nListCount;
+ sal_uInt32 nListCount;
rStream >> nListCount;
for ( USHORT i = 0; i < nListCount; i++ ) {
ByteString* pByteString = new ByteString();
@@ -185,7 +185,7 @@ SByteStringList& SByteStringList::operat
SByteStringList& SByteStringList::operator>> ( SvStream& rStream )
{
- ULONG nListCount = Count();
+ sal_uInt32 nListCount = Count();
rStream << nListCount;
ByteString* pByteString = First();
while (pByteString) {
The problem:
/opt/icecream/bin/g++ -Wreturn-type -fmessage-length=0 -c -O2
-fno-strict-aliasing -Wuninitialized -I. -I../unxlngx6.pro/inc/btstrp
-I../inc -I../inc/pch -I../inc -I../unx/inc -I../unxlngx6.pro/inc -I.
-I/local/ooo-build/ooo-build/build/src680-m180/solver/680/unxlngx6.pro/inc/stl
-I/local/ooo-build/ooo-build/build/src680-m180/solver/680/unxlngx6.pro/inc/external
-I/local/ooo-build/ooo-build/build/src680-m180/solver/680/unxlngx6.pro/inc
-I/local/ooo-build/ooo-build/build/src680-m180/solenv/unxlngx6/inc
-I/local/ooo-build/ooo-build/build/src680-m180/solenv/inc
-I/local/ooo-build/ooo-build/build/src680-m180/res
-I/local/ooo-build/ooo-build/build/src680-m180/solver/680/unxlngx6.pro/inc/stl
-I/local/ooo-build/ooo-build/build/src680-m180/solenv/inc/Xp31 -I/usr/include
-I/usr/X11R6/include
-I/local/ooo-build/ooo-build/build/src680-m180/solver/680/unxlngx6.pro/inc/offuh
-I. -I../res -I. -pipe -Wno-ctor-dtor-privacy -fno-use-cxa-atexit
-fvisibility-inlines-hidden -g -fno-exceptions -DLINUX -DUNX -DVCL -DGCC
-DC341 -DX86_64 -DCVER=C341 -DNPTL -DGLIBC=2 -DX86_64 -D_PTHREADS -D_REENTRANT
-DNEW_SOLAR -D_USE_NAMESPACE=1 -DSTLPORT_VERSION=400
-DHAVE_GCC_VISIBILITY_FEATURE -D__DMAKE -DUNIX -DCPPU_ENV=gcc3
-DGXX_INCLUDE_PATH=/usr/include/c++/4.1.0 -DSUPD=680 -DPRODUCT -DNDEBUG
-DPRODUCT_FULL -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DEXCEPTIONS_OFF -DCUI
-DSOLAR_JAVA -DSRC680=SRC680 -D_TOOLS_STRINGLIST -DMULTITHREAD
-o ../unxlngx6.pro/obj/sstring.o
/local/ooo-build/ooo-build/build/src680-m180/tools/bootstrp/sstring.cxx
/local/ooo-build/ooo-build/build/src680-m180/tools/bootstrp/sstring.cxx: In
member function 'SByteStringList& SByteStringList::operator<<(SvStream&)':
/local/ooo-build/ooo-build/build/src680-m180/tools/bootstrp/sstring.cxx:177:
error: no match for 'operator>>' in 'rStream >> nListCount'
../inc/stream.hxx:377: note: candidates are: SvStream&
SvStream::operator>>(sal_uInt16&)
../inc/stream.hxx:378: note: SvStream&
SvStream::operator>>(sal_uInt32&)
../inc/stream.hxx:379: note: SvStream&
SvStream::operator>>(long int&)
../inc/stream.hxx:380: note: SvStream&
SvStream::operator>>(short int&)
../inc/stream.hxx:381: note: SvStream&
SvStream::operator>>(int&)
../inc/stream.hxx:382: note: SvStream&
SvStream::operator>>(signed char&)
../inc/stream.hxx:383: note: SvStream&
SvStream::operator>>(char&)
../inc/stream.hxx:384: note: SvStream&
SvStream::operator>>(unsigned char&)
../inc/stream.hxx:385: note: SvStream&
SvStream::operator>>(float&)
../inc/stream.hxx:386: note: SvStream&
SvStream::operator>>(double&)
../inc/stream.hxx:388: note: SvStream&
SvStream::operator>>(ByteString&)
../inc/stream.hxx:393: note: SvStream&
SvStream::operator>>(SvStream&)
/local/ooo-build/ooo-build/build/src680-m180/tools/bootstrp/sstring.cxx: In
member function 'SByteStringList& SByteStringList::operator>>(SvStream&)':
/local/ooo-build/ooo-build/build/src680-m180/tools/bootstrp/sstring.cxx:189:
error: ambiguous overload for 'operator<<' in 'rStream << nListCount'
../inc/stream.hxx:395: note: candidates are: SvStream&
SvStream::operator<<(sal_uInt16)
../inc/stream.hxx:396: note: SvStream&
SvStream::operator<<(sal_uInt32)
../inc/stream.hxx:397: note: SvStream&
SvStream::operator<<(long int)
../inc/stream.hxx:398: note: SvStream&
SvStream::operator<<(short int)
../inc/stream.hxx:399: note: SvStream&
SvStream::operator<<(int)
../inc/stream.hxx:400: note: SvStream&
SvStream::operator<<(signed char)
../inc/stream.hxx:401: note: SvStream&
SvStream::operator<<(char)
../inc/stream.hxx:402: note: SvStream&
SvStream::operator<<(unsigned char)
../inc/stream.hxx:403: note: SvStream&
SvStream::operator<<(float)
../inc/stream.hxx:404: note: SvStream&
SvStream::operator<<(const double&)
../inc/stream.hxx:405: note: SvStream&
SvStream::operator<<(const char*) <near match>
../inc/stream.hxx:406: note: SvStream&
SvStream::operator<<(const unsigned char*) <near match>
../inc/stream.hxx:408: note: SvStream&
SvStream::operator<<(const ByteString&)
../inc/stream.hxx:639: note: SvStream& operator<<(SvStream&,
SvStream& (*)(SvStream&)) <near match>
dmake: Error code 1, while making '../unxlngx6.pro/obj/sstring.obj'
---------------------------------------------------------------------
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]