fx-carton added a comment.

Great check!

Would it be possible to add an option to show the warning if a `using` 
directive is used? As in:

  namespace ns {
      struct s {};
      void func(const s&) {
      }
  }
  
  using ns::s;
  using ns::func; // without this the check is triggered
  
  int main(void) {
      s t;
      func(t);
      return 0;
  }


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72282/new/

https://reviews.llvm.org/D72282

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to