We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The parser for preprocessor defines (specified in .fortls) wrongly replaces parts of single tokens. Here is what I mean by that. Given the source file
#define FOO replaced_1 #define BAR replaced_2 FOO FOO_abc FOO_BAR
Intellisense lists the following symbols:
replaced_1 replaced_1_abc replaced_1_replaced_2
However, it should be:
replaced_1 FOO_abc FOO_BAR
The text was updated successfully, but these errors were encountered:
e7a9554
Thanks for the report! This should now be fixed in master and will be included in the next patch.
Sorry, something went wrong.
No branches or pull requests
The parser for preprocessor defines (specified in .fortls) wrongly replaces parts of single tokens. Here is what I mean by that. Given the source file
Intellisense lists the following symbols:
However, it should be:
The text was updated successfully, but these errors were encountered: