search for: sparebitvector

Displaying 1 result from an estimated 1 matches for "sparebitvector".

Did you mean: sparsebitvector
2009 May 12
1
[LLVMdev] SparseBitVector compile warning
...torElement<ElementSize>' being compiled with [ ElementSize=128 ] ..\..\..\..\trunk\lib\Analysis\IPA\Andersens.cpp(108) : see reference to class template instantiation 'llvm::SparseBitVector<>' being compiled The problem is in the SpareBitVector.h file, line 58: friend class ilist_sentinel_traits<SparseBitVectorElement>; It should be struct, not class, as ilist_sentinel_traits is a struct, not a class: friend struct ilist_sentinel_traits<SparseBitVectorElement>;