some sections which I suspect are related to my last post
In file included from /usr/local/clang7/include/c++/v1/complex:246:
/usr/local/clang7/include/c++/v1/cmath:313:9: error: no member named 'signbit' in the global namespace
using ::signbit;
~~^
/usr/local/clang7/include/c++/v1/cmath:314:9: error: no member named 'fpclassify' in the global namespace
using ::fpclassify;
~~^
/usr/local/clang7/include/c++/v1/cmath:315:9: error: no member named 'isfinite' in the global namespace; did you mean 'finite'?
using ::isfinite;
~~^
/usr/local/include/math.h:749:12: note: 'finite' declared here
extern int finite(double)
^
and
In file included from /usr/local/clang7/include/c++/v1/complex:246:
/usr/local/clang7/include/c++/v1/cmath:316:9: error: no member named 'isinf' in the global namespace
using ::isinf;
~~^
/usr/local/clang7/include/c++/v1/cmath:317:9: error: no member named 'isnan' in the global namespace
using ::isnan;
~~^
/usr/local/clang7/include/c++/v1/cmath:318:9: error: no member named 'isnormal' in the global namespace
using ::isnormal;
~~^
/usr/local/clang7/include/c++/v1/cmath:319:7: error: no member named 'isgreater' in the global namespace; did you mean '::std::greater'?
using ::isgreater;
^~
and
/usr/local/clang7/include/c++/v1/cmath:320:7: error: no member named 'isgreaterequal' in the global namespace; did you mean '::std::greater_equal'?
using ::isgreaterequal;
^~
and
In file included from /usr/local/clang7/include/c++/v1/complex:246:
/usr/local/clang7/include/c++/v1/cmath:321:9: error: no member named 'isless' in the global namespace
using ::isless;
~~^
/usr/local/clang7/include/c++/v1/cmath:322:9: error: no member named 'islessequal' in the global namespace
using ::islessequal;
~~^
/usr/local/clang7/include/c++/v1/cmath:323:9: error: no member named 'islessgreater' in the global namespace
using ::islessgreater;
~~^
/usr/local/clang7/include/c++/v1/cmath:324:9: error: no member named 'isunordered' in the global namespace
using ::isunordered;
~~^
/usr/local/clang7/include/c++/v1/cmath:325:9: error: no member named 'isunordered' in the global namespace
using ::isunordered;
~~^
and
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/RcppEigen/include/Eigen/src/Core/MathFunctions.h:712:16: error: no member named 'isfinite' in namespace 'std'; did you mean 'finite'?
using std::isfinite;
~~~~~^~~~~~~~
finite
/usr/local/clang7/include/c++/v1/cmath:315:9: note: 'finite' declared here
using ::isfinite;
^
and
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/RcppEigen/include/Eigen/src/Core/MathFunctions.h:727:16: error: no member named 'isinf' in namespace 'std'
using std::isinf;
~~~~~^
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/RcppEigen/include/Eigen/src/Core/MathFunctions.h:742:16: error: no member named 'isnan' in namespace 'std'
using std::isnan;
~~~~~^
and
/Users/lukemansillo/Library/R/3.6/library/StanHeaders/include/stan/math/prim/scal/fun/is_nan.hpp:17:44: error: expected unqualified-id
inline bool is_nan(double x) { return std::isnan(x); }
^
/usr/local/include/math.h:165:5: note: expanded from macro 'isnan'
( sizeof(x) == sizeof(float) ? __inline_isnanf((float)(x)) \
^
and
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/BH/include/boost/math/special_functions/sign.hpp:30:17: error: no member named 'signbit' in namespace 'std'; did you mean simply 'signbit'?
return (std::signbit)(x) ? 1 : 0;
^~~~~~~~~~~~
signbit
and
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/BH/include/boost/math/special_functions/fpclassify.hpp:155:12: error: no member named 'fpclassify' in namespace 'std'; did you mean simply 'fpclassify'?
return (std::fpclassify)(t);
^~~~~~~~~~~~~~~
fpclassify
/Library/Frameworks/R.framework/Versions/3.6/Resources/library/BH/include/boost/math/special_functions/math_fwd.hpp:876:8: note: 'fpclassify' declared here
int fpclassify BOOST_NO_MACRO_EXPAND(T t);
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
8 warnings and 20 errors generated.
make: *** [file1f4297d521.o] Error 1
Iām inclined to agree, there are too many errors emitted
.