Bug 1654112 - Exempt code in webrtc namespace from implicit conversion operator checks. r=andi

Differential Revision: https://phabricator.services.mozilla.com/D105012
This commit is contained in:
Byron Campen [:bwc] 2021-02-12 14:26:36 +00:00
Родитель f51f953e5a
Коммит e3737b1c60
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -192,6 +192,7 @@ inline bool isInIgnoredNamespaceForImplicitConversion(const Decl *Declaration) {
return Name == "std" || // standard C++ lib
Name == "__gnu_cxx" || // gnu C++ lib
Name == "google_breakpad" || // breakpad
Name == "webrtc" || // libwebrtc
Name == "testing" || // gtest
Name == "rlbox"; // rlbox
}