Bug 488468: qcms build break with pre-4 GCCs (#if 0 commented text should be C/C++ commented), r=jmuizelaar

This commit is contained in:
Peter Weilbacher 2009-04-23 19:38:11 +02:00
Родитель aa3695feb6
Коммит 8f59ba8025
2 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -86,8 +86,9 @@ struct lutType {
uint16_t *output_table;
};
#if 0
this is from an intial idea of having the struct correspond to the data in
the file. I decided that it wasn't a good idea.
/* this is from an intial idea of having the struct correspond to the data in
* the file. I decided that it wasn't a good idea.
*/
struct tag_value {
uint32_t type;
union {

Просмотреть файл

@ -393,9 +393,10 @@ nsresult nsJPEGDecoder::ProcessData(const char *data, PRUint32 count, PRUint32 *
return NS_ERROR_UNEXPECTED;
}
#if 0
We don't currently support CMYK profiles. The following
code dealt with lcms types. Add something like this
back when we gain support for CMYK.
/* We don't currently support CMYK profiles. The following
* code dealt with lcms types. Add something like this
* back when we gain support for CMYK.
*/
/* Adobe Photoshop writes YCCK/CMYK files with inverted data */
if (mInfo.out_color_space == JCS_CMYK)
type |= FLAVOR_SH(mInfo.saw_Adobe_marker ? 1 : 0);