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:
parent
d085cd4a75
commit
62922d1144
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue