Removed the use of = operator.

This commit is contained in:
Robert Osfield
2008-11-27 09:33:06 +00:00
parent c470752182
commit c0e7e733ec

View File

@@ -94,7 +94,7 @@ unsigned char *exr_load(std::istream& fin,
try
{
C_IStream inStream = C_IStream(&fin);
C_IStream inStream(&fin);
RgbaInputFile rgbafile(inStream);
Box2i dw = rgbafile.dataWindow();
@@ -268,7 +268,7 @@ protected:
}
//Create a stream to save to
C_OStream outStream = C_OStream(&fout);
C_OStream outStream(&fout);
//Copy data from texture to rgba pixel format
Array2D<Rgba> outPixels(height,width);