[Bug 229517] games/xptools won't build on anything newer than 11.1

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Jul 15 04:12:54 UTC 2018


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=229517

--- Comment #12 from w.schwarzenfeld at utanet.at ---
Forgot:

 343 struct  DEMMask {
    344 
    345         DEMMask();
    346         DEMMask(int w, int h, bool ini);
    347         DEMMask(const DEMGeo&);
    348 
    349         DEMMask& operator=(bool);                       // Fill
    350         DEMMask& operator=(const DEMGeo&);      // Copy
    351         DEMMask& operator=(const DEMMask&);     // Copy
    352 
    353         void    resize(int width, int height, bool ini);               
// Resize, reset t
o X
    354         void    copy_geo_from(const DEMGeo& rhs);
    355         void    copy_geo_from(const DEMMask& rhs);
    356 
    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 
    361         double  mWest;
    362         double  mSouth;
    363         double  mEast;
    364         double  mNorth;
    365 
    366         int             mWidth;
    367         int             mHeight;
    368         int             mPost;
    369 
=====>>    370         vector<bool>    mData;
    371 };

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list