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
template<typename T1, typename T2>
bool compare(const T1& a, const T2& b) {
return a == b ; // BAD - no warning
}
int main() {
int a = 0;
bool b = false;
compare(a, b);
return 0;
}