mirror of
https://github.com/boostorg/intrusive.git
synced 2026-04-29 18:23:18 +02:00
Fix clang 6.0 warnings in tests: unused members, suspicious return types
This commit is contained in:
@@ -98,7 +98,7 @@ int main()
|
||||
|
||||
//Test the objects inserted in our lists
|
||||
for(; it1 != itend1; ++it1, ++bit1, ++it2, ++bit2){
|
||||
if(&*bit1 != &*it1 || &*bit2 != &*it2) return false;
|
||||
if(&*bit1 != &*it1 || &*bit2 != &*it2) return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user