"git@repo.hca.bsc.es:lalbano/llvm-bpevl.git" did not exist on "e8299a806ad197d64a627c1868b842256f464035"
The count() function for STL datatypes returns unsigned, even
where it's only bool-like 1/0 result like std::set.count(). Some of the LLVM ADT already return unsigned count(), while others return bool count(). This patch modifies SmallPtrSet, SmallSet, SparseSet count() to return unsigned instead of bool: 1 instead of true 0 instead of false More ADT to follow. llvm-svn: 197879
Loading
Please register or sign in to comment