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
My initial idea was to remove all keywords from the grammar and replace them with strings. Question is how to deal otherwise with a mixture of C, C++ and C++/CLI and the identifier/keyword conflicts. I'm only not sure with other side effects this could have? E.g. How does Sonar calculate the complexity?
After reading #673 I had a closer look to the standard again. My current understanding: we should keep all C++11 keywords as keywords in the grammar http://en.cppreference.com/w/cpp/keyword. All others should be handled as strings (e.g final and override).
My initial idea was to remove all keywords from the grammar and replace them with strings. Question is how to deal otherwise with a mixture of C, C++ and C++/CLI and the identifier/keyword conflicts. I'm only not sure with other side effects this could have? E.g. How does Sonar calculate the complexity?
Has someone experience with this?
The text was updated successfully, but these errors were encountered: