diff options
author | John McCall <rjmccall@apple.com> | 2009-12-07 22:46:59 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-12-07 22:46:59 +0000 |
commit | 812c15476c9dddb72a8fd48deb7ca86402664b94 (patch) | |
tree | 4126e8e54cab2de525cf3f47ce6bf24bb8cb5296 /TODO.txt | |
parent | b40d06dec23b53bbc1157a9adae7f887be31aa3b (diff) |
Recover from dot accesses to record pointers and arrow accesses to records.
Patch by Nicola Gigante!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90814 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'TODO.txt')
-rw-r--r-- | TODO.txt | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -65,7 +65,6 @@ More ideas for code modification hints: - If no member of a given name is found in a class/struct, search through the names of entities that do exist in the class and suggest the closest candidate. e.g., if I write "DS.setTypeSpecType", it would suggest "DS.SetTypeSpecType" (edit distance = 1). - If a class member is defined out-of-line but isn't in the class declaration (and there are no close matches!), provide the option to add an in-class declaration. - Fix-it hints for the inclusion of headers when needed for particular features (e.g., <typeinfo> for typeid) - - Change "foo.bar" to "foo->bar" when "foo" is a pointer. //===---------------------------------------------------------------------===// |