Kaydet (Commit) 6fd45322 authored tarafından Caolán McNamara's avatar Caolán McNamara

help out clang

Change-Id: I19bee6bfa1c499a295b007002c005d8c3f8ce12c
üst c1ea4a0d
...@@ -65,6 +65,12 @@ std::ostream& operator<<(std::ostream& rStrm, const Color& rColor) ...@@ -65,6 +65,12 @@ std::ostream& operator<<(std::ostream& rStrm, const Color& rColor)
return rStrm; return rStrm;
} }
std::ostream& operator<<(std::ostream& rStrm, const OpCode& rCode)
{
rStrm << static_cast<sal_uInt16>(rCode);
return rStrm;
}
FileFormat aFileFormats[] = { FileFormat aFileFormats[] = {
{ "ods" , "calc8", "", ODS_FORMAT_TYPE }, { "ods" , "calc8", "", ODS_FORMAT_TYPE },
{ "xls" , "MS Excel 97", "calc_MS_EXCEL_97", XLS_FORMAT_TYPE }, { "xls" , "MS Excel 97", "calc_MS_EXCEL_97", XLS_FORMAT_TYPE },
......
...@@ -105,6 +105,8 @@ std::ostream& operator<<(std::ostream& rStrm, const ScRangeList& rList); ...@@ -105,6 +105,8 @@ std::ostream& operator<<(std::ostream& rStrm, const ScRangeList& rList);
std::ostream& operator<<(std::ostream& rStrm, const Color& rColor); std::ostream& operator<<(std::ostream& rStrm, const Color& rColor);
std::ostream& operator<<(std::ostream& rStrm, const OpCode& rCode);
// Why is this here and not in osl, and using the already existing file // Why is this here and not in osl, and using the already existing file
// handling APIs? Do we really want to add arbitrary new file handling // handling APIs? Do we really want to add arbitrary new file handling
// wrappers here and there (and then having to handle the Android (and // wrappers here and there (and then having to handle the Android (and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment