зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1353593 - Part 1: Allow implicit conversion of non-const char16ptr_t to wchar*. r=froydnj
This commit is contained in:
Родитель
c8ccaa542b
Коммит
e08fbaaad6
|
@ -56,6 +56,12 @@ public:
|
|||
{
|
||||
return reinterpret_cast<const wchar_t*>(mPtr);
|
||||
}
|
||||
|
||||
operator wchar_t*()
|
||||
{
|
||||
return const_cast<wchar_t*>(reinterpret_cast<const wchar_t*>(mPtr));
|
||||
}
|
||||
|
||||
operator const void*() const
|
||||
{
|
||||
return mPtr;
|
||||
|
|
Загрузка…
Ссылка в новой задаче