Date: Sun, 15 Jul 2018 04:12:52 +0000 From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 229517] games/xptools won't build on anything newer than 11.1 Message-ID: <bug-229517-7788-Fw3EUp402E@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-229517-7788@https.bugs.freebsd.org/bugzilla/> References: <bug-229517-7788@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229517 --- Comment #12 from w.schwarzenfeld@utanet.at --- Forgot: 343 struct DEMMask { 344=20 345 DEMMask(); 346 DEMMask(int w, int h, bool ini); 347 DEMMask(const DEMGeo&); 348=20 349 DEMMask& operator=3D(bool); // Fill 350 DEMMask& operator=3D(const DEMGeo&); // Copy 351 DEMMask& operator=3D(const DEMMask&); // Copy 352=20 353 void resize(int width, int height, bool ini);=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20 // Resize, reset t o X 354 void copy_geo_from(const DEMGeo& rhs); 355 void copy_geo_from(const DEMMask& rhs); 356=20 357 inline bool operator()(int, int) const; 358 inline bool get(int x, int y) const; // Get value at x,y, false 359 inline void set(int x, int y, bool v); // Safe set - no-op if off 360=20 361 double mWest; 362 double mSouth; 363 double mEast; 364 double mNorth; 365=20 366 int mWidth; 367 int mHeight; 368 int mPost; 369=20 =3D=3D=3D=3D=3D>> 370 vector<bool> mData; 371 }; --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-229517-7788-Fw3EUp402E>