CLANG INTELLISENSE Smart completion issue

Sysprogs forums Forums VisualGDB CLANG INTELLISENSE Smart completion issue

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36863
    buga
    Participant

    The Clang IntelliSense supports C smart completion, but if you try to use it outside the function’s root braces, the completion breaks.

    void UART_Write(UART_HANDLE handle, uint8_t* data, int length);

    int main()
    {
    UART_HANDLE h;
    h. // Pressing ‘.’ triggers completion, and UART_Write is suggested as if the handle were a C++ class.

    if (true)
    {
    h. // -> nothing
    }
    }

    Is this the expected behavior, or is there a way to fix it?

    #36872
    support
    Keymaster

    Hi,

    Thanks for pointing this out. We have fixed it in the following build: VisualGDB-6.1.0.5377.msi

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.