[LLVMbugs] [Bug 8008] provide fixit for removing of extra qualification of members
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Fri Oct 1 15:19:31 PDT 2010
http://llvm.org/bugs/show_bug.cgi?id=8008
Gabor Greif <ggreif at gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |pichet2000 at gmail.com
Resolution| |FIXED
--- Comment #2 from Gabor Greif <ggreif at gmail.com> 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.
More information about the llvm-bugs
mailing list