[cfe-dev] Bug 13699 - Types unexpectedly lose visibility. This is happening when using iterators.

Francisco Lopes francisco.mailing.lists at oblita.com
Sat Aug 25 14:09:40 PDT 2012


I'm working with libclang in VIM's clang_complete. 
I'm having the following unexpected behavior when using iterators. Initially it 
was showing up with the new C++ range-for but in the end I've reduced it to 
iterator usage. 

#include <vector>

int main() 
{ 
    // std::vector type is visible here 

    std::vector<int>::iterator i; 

    // after declaring an iterator like above, std::vector 
    // is not visible for completion anymore. 

    return 0; 
} 

So sad of losing completion for containers =(

---

Francisco Lopes da Silva






--
View this message in context: http://clang-developers.42468.n3.nabble.com/Bug-13699-Types-unexpectedly-lose-visibility-This-is-happening-when-using-iterators-tp4026362.html
Sent from the Clang Developers mailing list archive at Nabble.com.



More information about the cfe-dev mailing list