私はCでベクトルを書いています。CVectorSearch関数は、ソートされている場合はbsearchを使用し、ソートされていない場合はlfindを使用します。lfindを呼び出しているときに、「割り当てによってキャストなしで整数からポインターが作成される」という警告が表示されるのはなぜですか?lfindを使用している場合でも正常に動作しているようです。
typedef struct
{
void *elements;
int logicalLength;
int allocatedLength;
int elementSize;
} CVector;
typedef void (*CVectorFreeElemFn)(void *elemAddr);
int CVectorSearch(const CVector *v, const void *key,
CVectorCmpElemFn comparefn,
int startIndex, bool isSorted)
{
void * found;
int elemSize = v->elementSize;
int length = v->logicalLength;
void *startAddress = (char*)v->elements + startIndex*elemSize;
if(isSorted)
found = bsearch(key, startAddress, length, elemSize, comparefn);
else
found = lfind(key, startAddress, &length, elemSize, comparefn);
if(found)
return ((char*)found - (char*)v->elements) / elemSize;
else
return -1;
}
編集: search.hを含めたので、次のようになります。
warning: passing argument 3 of 'lfind' from incompatible pointer type
ただし、プログラムはまだ正しく機能しています。