Bug 1060918 - Do not rely on two implicit conversions in GLContextProviderWGL.cpp for clang-cl compatibility; r=jrmuizel

This works around http://llvm.org/PR20821.
This commit is contained in:
Ehsan Akhgari 2014-09-02 12:20:50 -04:00
Родитель c382f0d21d
Коммит 2647584aa5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -635,7 +635,7 @@ GLContextProviderWGL::CreateHeadless()
return nullptr;
}
nsRefPtr<GLContext> retGL = glContext;
nsRefPtr<GLContext> retGL = glContext.get();
return retGL.forget();
}