Ticket #3637: patch-bitmap2.cc

File patch-bitmap2.cc, 321 bytes (added by cssdev@…, 19 years ago)

Patch bitmap2.cc to avoid compile failure

Line 
1--- bitmap2.cc.orig     2005-06-21 15:29:44.000000000 -0500
2+++ bitmap2.cc  2005-06-21 15:30:17.000000000 -0500
3@@ -95,7 +95,7 @@
4   {
5   int height = data.size();
6   for( int row = 0; row < height; ++row )
7-    reverse( data[row].begin(), data[row].end() );
8+    reverse( &(data[row].begin()), &(data[row].end()) );
9   }
10 
11