Author: post
Date: 2011-02-09 22:27:48 +0100 (Wed, 09 Feb 2011)
New Revision: 328

Modified:
   RawSpeed/RawImage.cpp
Log:
Fix silly G++ warning.

Modified: RawSpeed/RawImage.cpp
===================================================================
--- RawSpeed/RawImage.cpp       2011-02-09 21:23:21 UTC (rev 327)
+++ RawSpeed/RawImage.cpp       2011-02-09 21:27:48 UTC (rev 328)
@@ -29,9 +29,10 @@
 namespace RawSpeed {
 
 RawImageData::RawImageData(void):
-    dim(0, 0), uncropped_dim(0, 0),bpp(0), isCFA(true),
+    dim(0, 0), bpp(0), isCFA(true),
     blackLevel(-1), whitePoint(65536),
-    dataRefCount(0), data(0), cpp(1) {
+    dataRefCount(0), data(0), cpp(1),
+    uncropped_dim(0, 0) {
   pthread_mutex_init(&mymutex, NULL);
   subsampling.x = subsampling.y = 1;
 }
@@ -39,7 +40,8 @@
 RawImageData::RawImageData(iPoint2D _dim, uint32 _bpc, uint32 _cpp) :
     dim(_dim), bpp(_bpc),
     blackLevel(-1), whitePoint(65536),
-    dataRefCount(0), data(0), cpp(cpp) {
+    dataRefCount(0), data(0), cpp(cpp),
+    uncropped_dim(0, 0) {
   subsampling.x = subsampling.y = 1;
   createData();
   pthread_mutex_init(&mymutex, NULL);


_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit

Reply via email to