vs code missing autocompletion #27450
-
Dear all,
However, I am not sure how to solve it. Before, I managed to get it running by downgrading the version of the extension, so now it also throws an error. Hope anyone could help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Sorry, but somehow copy and paste did not work properly. This is the full error message
|
Beta Was this translation helpful? Give feedback.
-
me again, sorry... I think I solved the issue, by updating the main.C, though I unsure if I am doing it right, and if this was really the problem (parsing?!) old syntax: MooseInit init(argc, argv);
GolemApp::registerApps();
std::shared_ptr<MooseApp> app = AppFactory::createAppShared("GolemApp", argc, argv);
app->run(); new syntax: Moose::main<GolemApp>(argc, argv); |
Beta Was this translation helpful? Give feedback.
@mcacace -
This issue with deprecated code killing the VS Code extension was also reported yesterday, and I am in the process of fixing it.
The use of deprecated features is currently emitting a warning that breaks the extension integration when it should be ignored.
So if your update does not fully address the issue, then a new MOOSE should be available in the next couple of days fixing this.