Bug 1603371 - Use _GLIBCXX_RELEASE instead of __GLIBCXX__ r=froydnj

Differential Revision: https://phabricator.services.mozilla.com/D56956

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Sylvestre Ledru 2019-12-12 21:53:40 +00:00
Родитель f2ae3383f9
Коммит 63af8afd09
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -402,7 +402,7 @@ static const MeasureUnit& FindSimpleMeasureUnit(const char* subtype) {
static constexpr size_t MaxUnitLength() {
// Enable by default when libstdc++ 7 is the minimal version expected
#if __GLIBCXX__ > 20181026
#if _GLIBCXX_RELEASE >= 7
size_t length = 0;
for (const auto& unit : simpleMeasureUnits) {
length = std::max(length, std::char_traits<char>::length(unit.subtype));