Replace wx_static_cast/wx_const_cast/wx_reinterpret_cast with the function-style casts
See #17655.
This commit is contained in:
@@ -108,7 +108,7 @@ class-specific shared data. For example:
|
||||
@code
|
||||
MyClassRefData* GetData() const
|
||||
{
|
||||
return wx_static_cast(MyClassRefData*, m_refData);
|
||||
return static_cast<MyClassRefData*>(m_refData);
|
||||
}
|
||||
@endcode
|
||||
|
||||
|
Reference in New Issue
Block a user