From 0a594506803bfba10a7f4a80d53a3e621a9def5d Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 2 Mar 2012 15:42:49 -0500 Subject: [PATCH] Bug 676071 - add two stdc++ symbols that are needed by ANGLE - r=glandium --- build/stdc++compat.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/stdc++compat.cpp b/build/stdc++compat.cpp index a7f73af9556..7cf6f09c38c 100644 --- a/build/stdc++compat.cpp +++ b/build/stdc++compat.cpp @@ -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