Qualify calls to some functions from <cmath>.

PiperOrigin-RevId: 247958023
This commit is contained in:
A. Unique TensorFlower 2019-05-13 10:04:40 -07:00 committed by TensorFlower Gardener
parent 822404edd2
commit 8bda58c532

View File

@ -984,7 +984,7 @@ struct scalar_atan2_op {
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar
operator()(const Scalar& y, const Scalar& x) const {
#if GOOGLE_CUDA
return ::atan2(y, x);
return std::atan2(y, x);
#else
return std::atan2(y, x);
#endif