https://bugs.llvm.org/show_bug.cgi?id=33479
Bug ID: 33479
Summary: After reparse old completion cache is used is some
cases
Product: clang
Version: trunk
Hardware: PC
OS: Windows NT
Status: NEW
Severity: enhancement
Priority: P
Component: libclang
Assignee: unassignedclangb...@nondot.org
Reporter: ivan.donchevs...@qt.io
CC: kli...@google.com, llvm-bugs@lists.llvm.org
The easiest case is when the global function is declared after class in .cpp
file.
Simple example:
#include <iostream>
class Foo {
};
int gfx(int a = 10, long x = 7, float t = 6.f) {
return a;
}
int main() {
gf
return 0;
}
When you change gfx signature - completion is not updated.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs