Path: utzoo!telly!ddsw1!mcdchg!rutgers!tut.cis.ohio-state.edu!ulysses.att.com!ekrell From: ekrell@ulysses.att.com Newsgroups: gnu.g++.bug Subject: Re: Haven't been able to compile InterViews-2.3 since g++-1.22.2 Message-ID: <8810031223.AA21177@hector.homer.nj.att.com> Date: 3 Oct 88 12:23:17 GMT References: <8810022335.AA05464@rocky.sanders.com> Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 40 if you read a message I sent a while ago, you'll find the changes that are needed to compile InterViews 2.3 with g++ 1.25. The ones to bitmap.c are: *** old/bitmap.c Mon Sep 5 17:58:25 1988 --- bitmap.c Thu Sep 15 13:51:28 1988 *************** *** 11,17 **** return (x >= 0 && x < width && y >= 0 && y < height); } ! Bitmap::Bitmap (void* d, int w, int h) { Init(); width = w; height = h; --- 11,17 ---- return (x >= 0 && x < width && y >= 0 && y < height); } ! Bitmap::Bitmap (void* d, int w, int h) : () { Init(); width = w; height = h; *************** *** 24,30 **** } } ! Bitmap::Bitmap (Bitmap* b) { Init(); width = b->width; height = b->height; --- 24,30 ---- } } ! Bitmap::Bitmap (Bitmap* b) : () { Init(); width = b->width; height = b->height;