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
If initial implementation below works, any possibility of it being merged into trunk?
Currently this is a blocker for me using Clang-modernize on my MS VC++ codebase.
Extended Description
Official docs: http://msdn.microsoft.com/en-us/library/94dw1w7x%28v=vs.80%29.aspx
Unofficially, the grammar seems to be
__super can't be chained (i.e. __super::__super is invalid).
__super is only valid in member function scope (in particular, the following is invalid:
).
The unqualified-id is looked up in all the base classes and the results are merged.
The result may name a type-name.
__super is enabled only when compiling without /Za (disable language extensions).
The text was updated successfully, but these errors were encountered: