Fix build for -current

Submitted by:	bento
This commit is contained in:
Patrick Li 2002-12-12 04:25:32 +00:00
parent c0d543be03
commit aad9609aa9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=71547
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
--- qmls/mccluskey.cpp.orig Wed Dec 11 21:46:22 2002
+++ qmls/mccluskey.cpp Wed Dec 11 21:47:15 2002
@@ -200,7 +200,7 @@
value = primeImplicants[implicants[i]]->ValueAt(0);
diffBits = primeImplicants[implicants[i]]->GetDiffBits(numDiffBits);
- mask = (unum)pow(2,numBits-1);
+ mask = (unum)pow(2.0,(int)numBits-1);
for (int j=(int)numBits-1; j>=0; j--)
{
bool dBit=false;

View file

@ -0,0 +1,11 @@
--- qmls/quinegroup.cpp.orig Wed Dec 11 21:42:49 2002
+++ qmls/quinegroup.cpp Wed Dec 11 21:44:24 2002
@@ -111,7 +111,7 @@
unsigned int headData = head->GetData();
for (i=0; i<numDiffBits; i++)
{
- unsigned int numToSkip = (unsigned int)pow(2,i);
+ unsigned int numToSkip = (unsigned int)pow(2.0,(int)i);
diffBits[i] = ValueAt(numToSkip) - headData;
}