Thomas Tauber-Marshall has uploaded a new change for review. http://gerrit.cloudera.org:8080/3800
Change subject: CDH-41931: Toolchain for Ubuntu16 Impala builds ...................................................................... CDH-41931: Toolchain for Ubuntu16 Impala builds One problem uncovered while trying to build Impala on Ubuntu16 is that the functions 'isnan' and 'isinf' both appear in std:: (from <math.h>) and in boost::math::, but we're currently using them without qualifiers in several places, leading to a conflict. This patch prefaces all uses with 'std::' to disambiguate, and also adds <math.h> imports to all files that use those functions, for the sake of explicitness. Change-Id: Iaa1520c1e4aa4175468ac342b14c1262fa745f7a --- M be/src/exprs/cast-functions-ir.cc M be/src/exprs/udf-builtins-ir.cc M be/src/runtime/raw-value-ir.cc M be/src/runtime/raw-value.inline.h M be/src/util/metrics-test.cc 5 files changed, 18 insertions(+), 14 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/00/3800/1 -- To view, visit http://gerrit.cloudera.org:8080/3800 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iaa1520c1e4aa4175468ac342b14c1262fa745f7a Gerrit-PatchSet: 1 Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-Owner: Thomas Tauber-Marshall <[email protected]>
