[LLVMbugs] [Bug 8056] New: missing fixit to add parens to function	call
    bugzilla-daemon at llvm.org 
    bugzilla-daemon at llvm.org
       
    Wed Sep  1 16:01:33 PDT 2010
    
    
  
http://llvm.org/bugs/show_bug.cgi?id=8056
           Summary: missing fixit to add parens to function call
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: nlewycky at google.com
                CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com
For this code:
  struct Foo {
   int blah() { return 42; }
   void foo(int x) {}
   void bar() {
     foo(blah);
   }
  };
the user deserves a fixit adding the missing () to call blah().
-- 
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