dnl @synopsis AC_CXX_USE_NUMTRAIT dnl dnl If the compiler supports numeric traits promotions, define dnl HAVE_USE_NUMTRAIT. dnl dnl @version $Id: ac_cxx_use_numtrait.m4,v 1.1.1.1 2001/07/26 00:46 ac-archive-0.5.39 $ dnl @author Luc Maisonobe dnl AC_DEFUN([AC_CXX_USE_NUMTRAIT], [AC_CACHE_CHECK(whether the compiler supports numeric traits promotions, ac_cv_cxx_use_numtrait, [AC_REQUIRE([AC_CXX_TYPENAME]) AC_LANG_SAVE AC_LANG_CPLUSPLUS AC_TRY_COMPILE([ #ifndef HAVE_TYPENAME #define typename #endif template class SumType { public : typedef T_numtype T_sumtype; }; template<> class SumType { public : typedef int T_sumtype; }; template class A {}; template A::T_sumtype> sum(A) { return A::T_sumtype>(); } ],[A x; sum(x); return 0;], ac_cv_cxx_use_numtrait=yes, ac_cv_cxx_use_numtrait=no) AC_LANG_RESTORE ]) if test "$ac_cv_cxx_use_numtrait" = yes; then AC_DEFINE(HAVE_USE_NUMTRAIT,,[define if the compiler supports numeric traits promotions]) fi ])