Fixing some warnings with -Wconversion.

This commit is contained in:
Alan Mishchenko 2019-03-05 15:07:10 -08:00
parent bc288a7633
commit b632c8496c
2 changed files with 3 additions and 3 deletions

View File

@ -356,7 +356,7 @@ struct Jf_Par_t_
word WordMapDelay; word WordMapDelay;
word WordMapArea; word WordMapArea;
word WordMapDelayTarget; word WordMapDelayTarget;
float MapDelay; int MapDelay;
float MapArea; float MapArea;
float MapAreaF; float MapAreaF;
float MapDelayTarget; float MapDelayTarget;

View File

@ -203,8 +203,8 @@ struct Amap_Obj_t_
unsigned fPhase : 1; unsigned fPhase : 1;
unsigned fRepr : 1; unsigned fRepr : 1;
unsigned fPolar : 1; // pCutBest->fInv ^ pSetBest->fInv unsigned fPolar : 1; // pCutBest->fInv ^ pSetBest->fInv
unsigned Level : 12; // 20 (July 16, 2009) unsigned Level;
unsigned nCuts : 20; // 12 (July 16, 2009) unsigned nCuts;
int nRefs; int nRefs;
int Equiv; int Equiv;
int Fan[3]; int Fan[3];