Commit b632c849 by Alan Mishchenko

Fixing some warnings with -Wconversion.

parent bc288a76
...@@ -356,7 +356,7 @@ struct Jf_Par_t_ ...@@ -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;
......
...@@ -203,8 +203,8 @@ struct Amap_Obj_t_ ...@@ -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];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment