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
There's a lot of names defined in the cppSTLfunction syntax group. In practice this easily leads to spurious highlighting, especially in a programming style where these functions would always be called with the std:: namespace explicitly.
Bonus points if you can auto-detect whether there's a using namespace std; in the current scope, but I think this may be a bit too difficult to be worth it?
The text was updated successfully, but these errors were encountered:
(with separate groups for each namespace if we want to actually check the namespace, or with a single container group just checking for a preceding ::) works.
There's a lot of names defined in the cppSTLfunction syntax group. In practice this easily leads to spurious highlighting, especially in a programming style where these functions would always be called with the std:: namespace explicitly.
Bonus points if you can auto-detect whether there's a
using namespace std;
in the current scope, but I think this may be a bit too difficult to be worth it?The text was updated successfully, but these errors were encountered: