[bgufix][femcompat] remove operator << and operator >> for __float128

that accidentally came into the code again.
This commit is contained in:
Robert Kloefkorn 2018-05-23 14:50:16 +02:00
parent 1d573e02d5
commit 3a9b7dc7b5

View File

@ -97,34 +97,6 @@ namespace Dune
}
};
////////////////////////////////////////////////////////////
//
// operator << and operator >> for __float128
//
////////////////////////////////////////////////////////////
#if HAVE_QUAD
template< class Traits >
inline OutStreamInterface< Traits > &
operator<< ( OutStreamInterface< Traits >& out,
const __float128 value )
{
double val = double( value );
out.writeDouble( val );
return out;
}
template< class Traits >
inline InStreamInterface< Traits > &
operator>> ( InStreamInterface< Traits >& in,
__float128& value )
{
double val;
in.readDouble( val );
value = val;
return in;
}
#endif
} // namespace Fem
} // end namespace Dune