Reputation: 11
Visual Studio Code does not show function overloads, as you can see on the screenshot. But as far as I know, Intellisense should show/suggest me all function overloads.
Just note that the code you see is the only file that is opened with vscode, there are no other includes.
What do I need to do so that function overloads will be displayed?
Upvotes: 1
Views: 454
Reputation: 13238
Intellisense is actually correct, you can't overload functions in C. Well, you technically can, but not the way you are doing it.
Upvotes: 1