To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=46839
Issue #:|46839
Summary:|biffdump build fix ...
Component:|Spreadsheet
Version:|680m90
Platform:|Other
URL:|
OS/Version:|All
Status:|NEW
Status whiteboard:|
Keywords:|
Resolution:|
Issue type:|PATCH
Priority:|P3
Subcomponent:|code
Assigned to:|spreadsheet
Reported by:|mmeeks
------- Additional comments from [EMAIL PROTECTED] Wed Apr 6 06:32:21 -0700
2005 -------
Doesn't build for me on Linux:
cc1plus: warning: -Wuninitialized is not supported without -O
biffdump.cxx: In member function `void Biff8RecDumper::RecDump(unsigned char)':
biffdump.cxx:1189: warning: comparison is always true due to limited range of
data type
biffdump.cxx: In member function `void Biff8RecDumper::ControlsDump(SvStream&)':
biffdump.cxx:7156: error: call of overloaded `__AddDec(ByteString&, sal_Int8&)'
is ambiguous
biffdump.cxx:251: error: candidates are: void __AddDec(ByteString&, long
unsigned int)
biffdump.cxx:259: error: void __AddDec(ByteString&, short
unsigned int)
biffdump.cxx:265: error: void __AddDec(ByteString&, unsigned
char)
biffdump.cxx:271: error: void __AddDec(ByteString&, long int)
biffdump.cxx:279: error: void __AddDec(ByteString&, short int)
biffdump.cxx:284: error: void __AddDec(ByteString&, char)
This makes it build again:
--- sc/source/filter/excel/biffdump.cxx 29 Mar 2005 13:35:36 -0000 1.78
+++ sc/source/filter/excel/biffdump.cxx 6 Apr 2005 13:37:33 -0000
@@ -274,6 +273,10 @@
r += p;
}
+inline static void __AddDec( ByteString& r, sal_Int8 n )
+{
+ __AddDec( r, ( INT32 ) n );
+}
inline static void __AddDec( ByteString& r, INT16 n )
{
---------------------------------------------------------------------
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]