summaryrefslogtreecommitdiff
path: root/m4/ax_cxx_template_scoped_argument_matching.m4
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2009-08-10 20:11:11 +0100
committerReuben Thomas <rrt@sc3d.org>2009-08-10 20:11:11 +0100
commitc6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f (patch)
tree90269678bc2a42a9492c62e07dbe08ecc10835a3 /m4/ax_cxx_template_scoped_argument_matching.m4
parent386747c45473a6f4b7ca32a787c316d205705586 (diff)
downloadautoconf-archive-c6c19a2edcc7f206a1cfdf6d91e3d584f7705b9f.tar.gz
More renamings missed previously.
Diffstat (limited to 'm4/ax_cxx_template_scoped_argument_matching.m4')
-rw-r--r--m4/ax_cxx_template_scoped_argument_matching.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_cxx_template_scoped_argument_matching.m4 b/m4/ax_cxx_template_scoped_argument_matching.m4
index e52c9f4..6ec87bf 100644
--- a/m4/ax_cxx_template_scoped_argument_matching.m4
+++ b/m4/ax_cxx_template_scoped_argument_matching.m4
@@ -22,8 +22,8 @@
AC_DEFUN([AX_CXX_TEMPLATE_SCOPED_ARGUMENT_MATCHING],
[AC_CACHE_CHECK(whether the compiler supports function matching with argument types which are template scope-qualified,
-ac_cv_cxx_template_scoped_argument_matching,
-[AC_REQUIRE([AC_CXX_TYPENAME])
+ax_cv_cxx_template_scoped_argument_matching,
+[AC_REQUIRE([AX_CXX_TYPENAME])
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_TRY_COMPILE([
@@ -34,10 +34,10 @@ template<class X> class A { public : typedef X W; };
template<class Y> class B {};
template<class Y> void operator+(B<Y> d1, typename Y::W d2) {}
],[B<A<float> > z; z + 0.5f; return 0;],
- ac_cv_cxx_template_scoped_argument_matching=yes, ac_cv_cxx_template_scoped_argument_matching=no)
+ ax_cv_cxx_template_scoped_argument_matching=yes, ax_cv_cxx_template_scoped_argument_matching=no)
AC_LANG_RESTORE
])
-if test "$ac_cv_cxx_template_scoped_argument_matching" = yes; then
+if test "$ax_cv_cxx_template_scoped_argument_matching" = yes; then
AC_DEFINE(HAVE_TEMPLATE_SCOPED_ARGUMENT_MATCHING,,
[define if the compiler supports function matching with argument types which are template scope-qualified])
fi