http://llvm.org/bugs/show_bug.cgi?id=10283

           Summary: Spell checking triggers "correction has not been
                    looked up" assertion
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


Spell checking triggers "correction has not been looked up" assertion when a
typo result is an overloaded function, e.g. for code such as this:

void sin(int);
void sin(void);

void f() {
  min(5);
}

or 

template<typename T> void sin();
void f() {
  min();
}

This seems to have regressed when namespace-aware typo checking was landed in
r134007.

-- 
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

Reply via email to