Remove a no longer needed work-around for g++-4.7.

The current snapshot of 4.7 compiles fine without the work-around.
This commit is contained in:
Mark de Wever 2011-10-14 19:33:25 +00:00
parent d085cd4a75
commit 62922d1144

View file

@ -38,7 +38,7 @@ private:
* missing default constructor for vconfig. Not entirely sure whether it's a
* bug in gcc or not. For now make the code conditional.
*/
#if __GNUC__ == 4 && (__GNUC_MINOR__ == 6 || __GNUC_MINOR__ == 7) && defined(__GXX_EXPERIMENTAL_CXX0X__)
#if __GNUC__ == 4 && __GNUC_MINOR__ == 6 && defined(__GXX_EXPERIMENTAL_CXX0X__)
template<class T1, class T2>
friend class std::pair;
#endif