http://llvm.org/bugs/show_bug.cgi?id=8008
Gabor Greif <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |FIXED --- Comment #2 from Gabor Greif <[email protected]> 2010-10-01 17:19:31 CDT --- fixed in r115347 minor (potential) simplification: sometimes the operator-> is cascading and one can write + Diag(Func->getLocation(), diag::note_member_def_close_match); instead of + Diag((*Func)->getLocation(), diag::note_member_def_close_match); I did not check whether it is the case here. Anyway, thanks for the fix!!! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
