makefile.unix to catch these problems sooner.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1513 c06c8d41-db1a-0410-9941-cceddc491573
LVP5I5DHJGY3DG3DLIYBDVNULBCM7CD3HF4E5DW5QHCM6P2UZEJQC
GVCGKTH5IJ4VSQEIN4CRC7ZFVZW26JPIYNCPTO7GY66CSZZEW3ZQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC
QKGDOYIYKE6B36ION5O2DRW65DWWPZMYNWJVH7LJJ7FPGGM2MYAQC
if (rx? abs(slope) > 1.0 : abs(slope) < 1.0)
if (rx? fabs(slope) > 1.0 : fabs(slope) < 1.0)
const int flnew = newx; const int flold = oldx;
const int flnew = newx;
const int flold = oldx;
const double flnew = floor(newx); const double flold = floor(oldx);
const double flnew = floor(newx);
const double flold = floor(oldx);
const coord_def old(accx, accy);
const coord_def old(static_cast<int>(accx), static_cast<int>(accy));
const coord_def second(accx, accy);
const coord_def second(static_cast<int>(accx), static_cast<int>(accy));
-Wshadow -pedantic
-Wshadow -Wconversion -pedantic
coord_def pos() const { return coord_def(accx, accy); }
coord_def pos() const { return coord_def(x(), y()); }