You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove IWYU False Positives From Other Namespaces (#273)
This PR removes the false positives from `_HEADERS_CONTAINING_TEMPLATES`
that come from non `std` namespaces. Users of boost or other namespaces
will no longer get false positives.
```c++
// Warn
set<int> blah1;
std::set<int> blah2;
::std::set<int> blah2;
set<int> blah1;
std::set<int> blah2;
::std::set<int> blah2;
// NO WARN
foo.set<int>();
foo->set<int>();
boost::container::set<int> blah3;
blah::std::set<int> blah3;
my_std::set<int> blah3;
my_set<int> blah4;
coolset<int> blah5;
std::blah<int> blah6;
::set<int> blah7;
```
0 commit comments