I’ve heard of static_cast operator
Recently I’ve come across static_case, for instance:
*ppv = static_case<IUnknown>
What does this mean?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s a typo : there is no static_case, only static_cast, dynamic_cast, const_cast and reinterpret_cast.
You can see on google that the docs where you find ‘static_case’ have typos and use static_cast and static_case like if it was the same word.
To be sure, just try to use static_case in available compilers.