aboutsummaryrefslogtreecommitdiff
path: root/m4/c++11.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/c++11.m4')
-rw-r--r--m4/c++11.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/c++11.m4 b/m4/c++11.m4
index 774f20d..5df020f 100644
--- a/m4/c++11.m4
+++ b/m4/c++11.m4
@@ -13,8 +13,8 @@ cxx11=no
AC_MSG_CHECKING([whether we are in C++11 mode])
-CXX_LIBTOOL_LINK_IFELSE(
-AC_LANG_SOURCE([[
+CXX_LIBTOOL_LINK_IFELSE([
+AC_LANG_SOURCE([
#include <memory>
int
@@ -23,7 +23,7 @@ main ()
std::shared_ptr<int> p (new int (10));
*p = 11;
}
-]]),
+])],
[cxx11=yes])
if test x"$cxx11" = xyes; then