Bug 676071 - add two stdc++ symbols that are needed by ANGLE - r=glandium

This commit is contained in:
Benoit Jacob 2012-03-02 15:42:49 -05:00
Родитель 0fbe83c231
Коммит 0a59450680
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -57,6 +57,8 @@ namespace std {
template ostream& ostream::_M_insert(double);
template ostream& ostream::_M_insert(long);
template ostream& ostream::_M_insert(unsigned long);
template ostream& ostream::_M_insert(long long);
template ostream& ostream::_M_insert(unsigned long long);
#ifdef DEBUG
template ostream& ostream::_M_insert(const void*);
#endif