You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS: Windows 10 21H1 running vscode on WSL 2 (Ubuntu 20.04)
VScode version 1.63.0
C/C++ extension v 1.7.1 and 1.8.0-insiders2
Everything builds fine; I just want to have autocomplete and code correction and stuff.
On templatefx.cpp I have error squiggles on FX_INIT and FX_PROCESS saying "this declaration has no storage class or type specifier"
Also for templateosc.cpp, I get error squiggles under uint32_t on all the function declarations with the error variable "uint32_t" is not a type name.
Removing attribute((unused)) corrects this problem but then I get an error for void OSC_INIT where "incomplete type is not allowed."
The text was updated successfully, but these errors were encountered:
VScode project should respect all include foders configured in makefile. Honestly I did not bother with that but this should fix uint32_t and similar issues. As for the macros, not sure VScode C++ plugin will repect such complications.
OS: Windows 10 21H1 running vscode on WSL 2 (Ubuntu 20.04)
VScode version 1.63.0
C/C++ extension v 1.7.1 and 1.8.0-insiders2
Everything builds fine; I just want to have autocomplete and code correction and stuff.
On templatefx.cpp I have error squiggles on FX_INIT and FX_PROCESS saying "this declaration has no storage class or type specifier"
Also for templateosc.cpp, I get error squiggles under
uint32_t
on all the function declarations with the errorvariable "uint32_t" is not a type name
.Removing attribute((unused)) corrects this problem but then I get an error for
void OSC_INIT
where "incomplete type is not allowed."The text was updated successfully, but these errors were encountered: