diff options
author | 2007-11-17 12:34:14 +0000 | |
---|---|---|
committer | 2007-11-17 12:34:14 +0000 | |
commit | 8301028682d20e23c5fd6aaca92c2bc9721c1de3 (patch) | |
tree | df93cbc81df095f8581eb75cb231873b7767f216 /configure.ac | |
parent | c9823c951683398cb2c03968a08eb73d6f128254 (diff) | |
download | paludis-8301028682d20e23c5fd6aaca92c2bc9721c1de3.tar.gz paludis-8301028682d20e23c5fd6aaca92c2bc9721c1de3.tar.xz |
Tweak explicit instantiation of fully specialised template check
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 04b25440c..f4f45045a 100644 --- a/configure.ac +++ b/configure.ac @@ -189,7 +189,7 @@ dnl {{{ check whether we do explicit instantiation of fully specialised template AC_MSG_CHECKING([whether we should explicitly instantiate fully specialised templates]) AC_COMPILE_IFELSE([ template <typename T_> struct S; -template <> struct S<int>; +template <> struct S<int> { }; template class S<int>; ], [AC_MSG_RESULT([yes])], |